group-detail.less 18 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183
  1. /**
  2. * Group Detail
  3. * ============================================================================
  4. */
  5. .group-detail {
  6. position: relative;
  7. clear: both;
  8. h3 {
  9. font-size: 22px;
  10. margin: 0 0 8px;
  11. text-overflow: ellipsis;
  12. white-space: nowrap;
  13. overflow: hidden;
  14. em {
  15. font-style: normal;
  16. font-weight: 400;
  17. color: @70;
  18. font-size: 90%;
  19. }
  20. }
  21. .count {
  22. &.short-id-box {
  23. min-width: 0;
  24. span:not(.help-link) {
  25. font-size: 18px;
  26. line-height: 1.45;
  27. display: block;
  28. overflow: hidden;
  29. text-overflow: ellipsis;
  30. white-space: nowrap;
  31. direction: rtl;
  32. }
  33. }
  34. span:not(.help-link) {
  35. font-size: 22px;
  36. display: inline-block;
  37. line-height: 1.2;
  38. }
  39. }
  40. .assigned-to {
  41. text-align: right;
  42. position: relative;
  43. }
  44. .meta {
  45. margin: 0 0 15px;
  46. color: #949ea4;
  47. }
  48. .id-label {
  49. background: #fff;
  50. max-width: 200px;
  51. white-space: nowrap;
  52. overflow: hidden;
  53. text-overflow: ellipsis;
  54. }
  55. .severity {
  56. display: inline-block;
  57. position: relative;
  58. top: -7px;
  59. padding: 0 10px;
  60. }
  61. .nav-tabs {
  62. margin-top: 20px;
  63. margin-bottom: 0;
  64. }
  65. &:before {
  66. position: absolute;
  67. display: block;
  68. content: '';
  69. bottom: -1px;
  70. left: -40px;
  71. right: -40px;
  72. height: 1px;
  73. background: @trim;
  74. }
  75. }
  76. /**
  77. * Event Details
  78. * ============================================================================
  79. */
  80. .event-details-container {
  81. display: flex;
  82. margin: -20px -40px;
  83. background: #fff;
  84. flex-direction: column;
  85. flex: 1;
  86. @media (min-width: 1200px) {
  87. flex-direction: row;
  88. }
  89. .primary {
  90. flex: 1;
  91. .user-report {
  92. border-radius: 0;
  93. box-shadow: none;
  94. padding: 20px 30px 0 40px;
  95. border: 0;
  96. border-top: 1px solid lighten(@trim, 4);
  97. margin: 0;
  98. padding-bottom: 0;
  99. }
  100. @media (min-width: 1200px) {
  101. // TODO(dcramer): whatever flex is doing here is causing this to extend to
  102. // whatever it pleases (e.g. 4k pixels on my 1280 screen)
  103. max-width: ~'calc(100% - 365px)';
  104. }
  105. }
  106. .secondary {
  107. width: 100%;
  108. padding: 30px 40px 30px 30px;
  109. border-left: 1px solid @trim;
  110. @media (min-width: 1200px) {
  111. width: 365px;
  112. }
  113. }
  114. }
  115. .module-user .avatar {
  116. width: 64px;
  117. height: 64px;
  118. img {
  119. height: 100%;
  120. width: 100%;
  121. }
  122. }
  123. .event-stats {
  124. padding-top: 84px;
  125. margin-top: -84px;
  126. }
  127. .event-stats {
  128. h6 {
  129. font-size: 14px;
  130. margin-bottom: 15px;
  131. position: relative;
  132. > span {
  133. background: @white-dark;
  134. padding-right: 7px;
  135. }
  136. &:before {
  137. display: block;
  138. position: absolute;
  139. content: '';
  140. border-top: 1px solid lighten(@trim, 9);
  141. left: 0;
  142. right: 0;
  143. top: 50%;
  144. z-index: -1;
  145. }
  146. }
  147. }
  148. .user-widget {
  149. position: relative;
  150. margin-bottom: 20px;
  151. .avatar {
  152. width: 48px;
  153. height: 48px;
  154. position: absolute;
  155. top: 0;
  156. right: 0;
  157. box-shadow: 0 0 0 5px #fff;
  158. background: #fff;
  159. border-radius: 50% 0 50% 50%;
  160. }
  161. .table {
  162. margin-bottom: 0;
  163. }
  164. }
  165. /**
  166. * Traceback
  167. * ============================================================================
  168. */
  169. .traceback {
  170. list-style-type: none;
  171. padding-left: 0;
  172. border: 1px solid @trim-dark;
  173. border-radius: 0 3px 3px 3px;
  174. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  175. margin-bottom: 20px;
  176. }
  177. // TODO(dcramer): we probably shouldn't overload these
  178. pre.traceback {
  179. margin: 0 0 20px;
  180. }
  181. div.traceback > ul {
  182. padding: 0;
  183. margin-bottom: 0;
  184. li {
  185. &:first-child {
  186. border-top: none;
  187. .title {
  188. border-top: none;
  189. border-top-right-radius: 3px;
  190. border-top-left-radius: 3px;
  191. }
  192. }
  193. &:last-child .title {
  194. border-bottom-right-radius: 3px;
  195. border-bottom-left-radius: 3px;
  196. }
  197. }
  198. }
  199. .raw-toggle {
  200. input {
  201. margin-right: 6px;
  202. position: relative;
  203. top: -1px;
  204. }
  205. }
  206. /**
  207. * Frame
  208. * ============================================================================
  209. */
  210. .exc-message {
  211. margin: 15px 0 0;
  212. word-wrap: break-word;
  213. white-space: pre-wrap;
  214. color: @gray-darker;
  215. padding: 0;
  216. background: none;
  217. }
  218. .frames-omitted,
  219. .exc-omitted {
  220. color: @gray-dark;
  221. font-size: 14px;
  222. font-weight: 600;
  223. border-left: 3px solid @red;
  224. border-right: 1px solid lighten(@red, 30%);
  225. background: lighten(@red, 35%);
  226. padding: 10px 20px;
  227. margin-bottom: 10px !important;
  228. margin-left: -21px;
  229. margin-right: -21px;
  230. }
  231. .exception {
  232. margin: 0 0 20px;
  233. &:last-child {
  234. border-bottom: 0;
  235. margin-bottom: 0;
  236. }
  237. h5 {
  238. line-height: 1.2;
  239. }
  240. .traceback {
  241. margin-top: 15px;
  242. }
  243. }
  244. .traceback {
  245. &.no-exception .frame:first-child {
  246. border-top: 0;
  247. }
  248. .frame {
  249. list-style-type: none;
  250. position: relative;
  251. margin: 0;
  252. border-top: 1px solid @trim;
  253. h3 {
  254. font-size: 22px;
  255. }
  256. &.is-expandable .title {
  257. cursor: pointer;
  258. &:hover {
  259. background: lighten(@blue-light, 36);
  260. }
  261. }
  262. &.system-frame.is-expandable .title:hover {
  263. background: darken(@white-dark, 5);
  264. }
  265. .title {
  266. padding: 8px 20px;
  267. font-size: 13px;
  268. margin: 0;
  269. line-height: 16px;
  270. background: lighten(@blue-light, 35);
  271. word-break: break-all;
  272. /* for firefox */
  273. word-break: break-word;
  274. /* for chrome */
  275. code {
  276. font-family: inherit;
  277. }
  278. .informal {
  279. font-style: italic;
  280. }
  281. }
  282. &.system-frame .title {
  283. background: @white-dark;
  284. }
  285. .title.as-table {
  286. width: 100%;
  287. padding-left: 15px;
  288. .package {
  289. font-size: 13px;
  290. font-weight: bold;
  291. .truncate;
  292. flex-basis: 120px;
  293. flex-grow: 0;
  294. flex-shrink: 0;
  295. }
  296. .address {
  297. font-family: @font-family-code;
  298. font-size: 11px;
  299. color: @gray-dark;
  300. letter-spacing: -0.25px;
  301. width: 100px;
  302. flex-grow: 0;
  303. flex-shrink: 0;
  304. }
  305. .symbol {
  306. word-break: break-word;
  307. flex: 1;
  308. code {
  309. background: transparent;
  310. color: @blue-dark;
  311. padding-right: 5px;
  312. a {
  313. color: inherit;
  314. &:hover {
  315. text-decoration: underline;
  316. }
  317. }
  318. }
  319. span.offset {
  320. font-weight: bold;
  321. padding-right: 10px;
  322. }
  323. span.filename {
  324. color: @purple;
  325. margin-right: 3px;
  326. &:before {
  327. content: '(';
  328. }
  329. &:after {
  330. content: ')';
  331. }
  332. }
  333. }
  334. }
  335. .original-src {
  336. font-size: 12px;
  337. padding-left: 3px;
  338. position: relative;
  339. top: 1px;
  340. }
  341. .icon-open {
  342. font-size: 12px;
  343. margin-right: 3px;
  344. margin-left: 3px;
  345. position: relative;
  346. top: 1px;
  347. }
  348. .in-at {
  349. opacity: 0.6;
  350. margin: 0 2px;
  351. }
  352. .blame {
  353. color: lighten(@gray, 5);
  354. a {
  355. color: @gray;
  356. }
  357. .icon-mark-github {
  358. position: relative;
  359. top: 1px;
  360. }
  361. }
  362. .tooltip-inner {
  363. word-wrap: break-word;
  364. text-align: left;
  365. max-width: 300px;
  366. }
  367. .divider {
  368. border-left: 1px solid @trim;
  369. display: inline-block;
  370. width: 1px;
  371. height: 10px;
  372. margin: 0 6px;
  373. position: relative;
  374. top: 1px;
  375. }
  376. code {
  377. padding: 0;
  378. background: inherit;
  379. font-size: inherit;
  380. color: inherit;
  381. }
  382. .empty-context {
  383. padding: 20px;
  384. color: @gray;
  385. p {
  386. display: inline-block;
  387. margin-bottom: 0;
  388. }
  389. .icon {
  390. opacity: 0.45;
  391. margin-right: 10px;
  392. font-size: 0.85em;
  393. }
  394. }
  395. .context {
  396. display: none;
  397. background: #fff;
  398. margin: 0;
  399. padding: 8px 0;
  400. > li {
  401. background: inherit;
  402. }
  403. table.key-value {
  404. border-top: 1px solid @trim;
  405. padding: 0;
  406. margin: 0 0 -8px;
  407. td {
  408. border-bottom: 1px solid @trim !important;
  409. &.key {
  410. width: 125px;
  411. max-width: 125px;
  412. }
  413. &.value pre {
  414. background: inherit;
  415. }
  416. }
  417. tr:last-child {
  418. td {
  419. border-bottom: 0 !important;
  420. }
  421. }
  422. }
  423. &.expanded {
  424. display: block;
  425. }
  426. }
  427. .tag-app {
  428. color: #aaa;
  429. font-size: 0.9em;
  430. margin-left: 10px;
  431. }
  432. > div > table.key-value {
  433. margin-bottom: 5px;
  434. > tbody > tr > th {
  435. color: @gray-dark;
  436. text-align: right;
  437. padding-right: 12px !important;
  438. }
  439. }
  440. .btn-toggle {
  441. display: block;
  442. float: right;
  443. width: 16px;
  444. height: 16px;
  445. padding: 0;
  446. line-height: 16px;
  447. font-size: 9px;
  448. text-align: center;
  449. flex-shrink: 0;
  450. }
  451. .expand-button:hover {
  452. cursor: pointer;
  453. }
  454. &.expanded {
  455. .expandable {
  456. height: auto;
  457. }
  458. }
  459. &:last-child {
  460. .context {
  461. margin-bottom: 0;
  462. }
  463. .toggle-expand .btn {
  464. margin-bottom: -13px;
  465. }
  466. }
  467. }
  468. &.in-app-traceback .frame.leads-to-app {
  469. .leads-to-app-hint {
  470. display: none;
  471. }
  472. &.collapsed {
  473. .title {
  474. opacity: 0.7;
  475. font-size: 12px;
  476. padding: 4px 20px 4px 20px;
  477. background: lighten(@blue-light, 33);
  478. &.is-expandable:hover {
  479. opacity: 1;
  480. }
  481. .package {
  482. width: auto;
  483. }
  484. }
  485. .title.as-table {
  486. padding-left: 15px;
  487. }
  488. .in-at-line,
  489. .lineno,
  490. .btn-toggle,
  491. .address {
  492. display: none;
  493. }
  494. .leads-to-app-hint {
  495. display: inline;
  496. }
  497. }
  498. }
  499. &.full-traceback {
  500. .leads-to-app-hint {
  501. display: none !important;
  502. }
  503. }
  504. .expandable {
  505. height: 0;
  506. position: relative;
  507. .icon-plus {
  508. position: absolute;
  509. left: 8px;
  510. top: 6px;
  511. opacity: 0.25;
  512. transition: 0.1s opacity linear;
  513. }
  514. &.key-value {
  515. display: none;
  516. }
  517. .ws {
  518. display: none;
  519. overflow: hidden;
  520. }
  521. &:hover {
  522. .icon-plus {
  523. opacity: 0.5;
  524. }
  525. }
  526. }
  527. .expanded {
  528. .expandable {
  529. height: auto;
  530. }
  531. .ws {
  532. display: inline;
  533. overflow: none;
  534. }
  535. }
  536. ol.context {
  537. margin: 0;
  538. list-style-position: inside;
  539. list-style-type: decimal-leading-zero;
  540. border-radius: 3px;
  541. padding-left: 0;
  542. .key-value {
  543. display: none;
  544. pre {
  545. overflow: auto;
  546. }
  547. }
  548. > li {
  549. font-family: @font-family-code;
  550. color: #222;
  551. background-color: #f6f7f8;
  552. line-height: 24px;
  553. font-size: 12px;
  554. white-space: pre;
  555. white-space: pre-wrap;
  556. word-wrap: break-word;
  557. min-height: 24px;
  558. }
  559. > li.active {
  560. background-color: #f6f7f8;
  561. list-style-type: none;
  562. border-radius: 2px;
  563. &:first-child:last-child {
  564. background-color: inherit;
  565. color: inherit;
  566. border-radius: 0;
  567. }
  568. pre {
  569. color: @gray-dark;
  570. }
  571. }
  572. > li:first-child {
  573. border-radius: 2px 2px 0 0;
  574. }
  575. > li:last-of-type {
  576. border-radius: 0 0 2px 2px;
  577. }
  578. li.closed {
  579. border-radius: 2px;
  580. }
  581. &.expanded {
  582. .key-value {
  583. display: table;
  584. }
  585. > li.active {
  586. background-color: @purple;
  587. color: #fff;
  588. list-style-type: inherit;
  589. border-radius: 0;
  590. }
  591. }
  592. }
  593. ol.context-line {
  594. > li {
  595. > span {
  596. float: right;
  597. }
  598. }
  599. }
  600. }
  601. #full-message {
  602. line-height: 1.5em;
  603. &#full-message {
  604. background: none;
  605. padding: 0;
  606. }
  607. }
  608. &.expanded div.commands,
  609. div.commands:hover {
  610. opacity: 1;
  611. a {
  612. color: @state-info-text;
  613. }
  614. }
  615. div.commands {
  616. position: absolute;
  617. right: 10px;
  618. top: 6px;
  619. font-size: 0.9em;
  620. opacity: 0.3;
  621. a {
  622. color: #666;
  623. text-decoration: none;
  624. span {
  625. font-size: 9px;
  626. margin-right: 5px;
  627. }
  628. }
  629. }
  630. // Request
  631. .request {
  632. .path {
  633. font-weight: normal;
  634. float: left;
  635. strong {
  636. margin-right: 4px;
  637. }
  638. }
  639. }
  640. /* message details */
  641. .server-list,
  642. .url-list,
  643. .logger-list,
  644. .level-list {
  645. list-style: none;
  646. margin-left: 0;
  647. margin-bottom: 0;
  648. }
  649. .server-list li,
  650. .url-list li {
  651. padding-bottom: 10px;
  652. }
  653. .url-list li a {
  654. line-height: 18px;
  655. }
  656. pre.val,
  657. span.val {
  658. span {
  659. display: inline;
  660. }
  661. }
  662. .val-string {
  663. border-radius: 3px;
  664. padding: 2px 4px;
  665. }
  666. .val-string-multiline {
  667. display: block;
  668. overflow: auto;
  669. }
  670. .val-stripped {
  671. color: darken(@red, 10);
  672. background: transparent;
  673. }
  674. .val-bool,
  675. .val-null {
  676. color: darken(@blue, 10);
  677. font-weight: bold;
  678. }
  679. .val-dict {
  680. display: inline;
  681. .val-dict-items {
  682. display: block;
  683. padding: 0 0 0 15px;
  684. .val-dict-pair {
  685. display: block;
  686. }
  687. }
  688. .val-dict-key,
  689. .val-dict-key .val-string {
  690. color: darken(@red, 5);
  691. background: transparent;
  692. border-radius: none;
  693. }
  694. }
  695. .val-array {
  696. .val-array-items {
  697. display: block;
  698. padding: 0 0 0 15px;
  699. .val-array-item {
  700. display: block;
  701. }
  702. }
  703. }
  704. /**
  705. * Exceptions and Threads
  706. * ============================================================================
  707. */
  708. .box .thread {
  709. .exception {
  710. margin-top: 10px;
  711. }
  712. .traceback.no-exception {
  713. margin-top: 0;
  714. }
  715. }
  716. /**
  717. * Shared Group Detail
  718. * ============================================================================
  719. */
  720. .shared-group {
  721. padding: 40px 0;
  722. background: none;
  723. .app > .container {
  724. max-width: 960px;
  725. > .box {
  726. > .box-header {
  727. padding: 15px 30px 13px;
  728. display: flex;
  729. align-items: center;
  730. a {
  731. &.logo {
  732. font-size: 20px;
  733. flex: 1;
  734. }
  735. &:hover {
  736. color: @gray-dark;
  737. }
  738. }
  739. .back-to,
  740. .pull-right a {
  741. font-size: 16px;
  742. }
  743. .back-to {
  744. border-left: 1px solid @trim;
  745. padding: 2px 10px;
  746. display: inline-block;
  747. margin-left: 7px;
  748. position: relative;
  749. top: -3px;
  750. }
  751. }
  752. }
  753. }
  754. .container {
  755. padding-left: 0;
  756. padding-right: 0;
  757. }
  758. .group-detail {
  759. padding: 0 30px;
  760. border-bottom: 1px solid darken(@trim, 5);
  761. box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
  762. &:before {
  763. display: none;
  764. }
  765. .details {
  766. max-width: 960px;
  767. margin: 0 auto;
  768. padding: 20px 0 0;
  769. }
  770. }
  771. .event-details-container {
  772. display: block;
  773. margin: 0;
  774. .primary {
  775. max-width: 100%;
  776. .box {
  777. padding: 0 30px;
  778. &:first-child {
  779. border-top: 0;
  780. }
  781. }
  782. .box-header,
  783. .box-content {
  784. max-width: 960px;
  785. margin: 0 auto;
  786. }
  787. .box-header {
  788. margin-top: 15px;
  789. }
  790. .exception {
  791. padding: 20px 0;
  792. margin: 0;
  793. &:first-child {
  794. padding-top: 0;
  795. }
  796. }
  797. .traceback.no-exception {
  798. margin-bottom: 25px;
  799. margin-top: -5px;
  800. }
  801. }
  802. }
  803. }
  804. /**
  805. * Breadcrumbs / Timeline
  806. * ============================================================================
  807. */
  808. ul.crumbs {
  809. li {
  810. .table.key-value {
  811. margin-bottom: 0;
  812. background: none;
  813. thead td:first-child {
  814. font-weight: bold;
  815. }
  816. td {
  817. padding: 2px 0 !important;
  818. font-weight: normal;
  819. }
  820. .key {
  821. width: 122px;
  822. max-width: 122px;
  823. color: @gray-dark;
  824. line-height: 1.6 !important;
  825. }
  826. pre {
  827. display: inline-block;
  828. padding: 0;
  829. margin-top: 1px;
  830. background: none;
  831. word-break: break-all;
  832. }
  833. }
  834. div.summary {
  835. overflow: hidden;
  836. &.can-expand {
  837. cursor: pointer;
  838. position: relative;
  839. &:after {
  840. position: absolute;
  841. bottom: 0;
  842. left: 0;
  843. right: 0;
  844. content: ' ';
  845. display: block;
  846. width: 100%;
  847. height: 15px;
  848. background-image: linear-gradient(
  849. to bottom,
  850. rgba(255, 255, 255, 0) 0%,
  851. rgba(255, 255, 255, 1) 100%
  852. );
  853. background-repeat: repeat-x;
  854. z-index: 1;
  855. }
  856. &:hover {
  857. &:before {
  858. position: absolute;
  859. bottom: 4px;
  860. right: 0;
  861. font-family: 'sentry-simple';
  862. content: '\e617';
  863. background: @white-dark;
  864. border: 1px solid darken(@trim, 5);
  865. border-radius: 3px;
  866. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  867. z-index: 2;
  868. padding: 0 5px;
  869. margin-left: -14px;
  870. }
  871. }
  872. }
  873. &.expanded {
  874. max-height: none;
  875. &:after,
  876. &:before {
  877. display: none;
  878. }
  879. }
  880. pre {
  881. display: inline-block;
  882. }
  883. }
  884. }
  885. }
  886. /**
  887. * Responsive medium screen
  888. * ============================================================================
  889. */
  890. @media (max-width: 991px) {
  891. .group-stats-column {
  892. float: none;
  893. }
  894. }
  895. /**
  896. * Responsive small screen
  897. * ============================================================================
  898. */
  899. @media (max-width: 767px) {
  900. .group-detail {
  901. h3 {
  902. white-space: normal;
  903. font-size: 20px;
  904. line-height: 1.2;
  905. }
  906. .meta {
  907. font-size: 13px;
  908. }
  909. .short-id-box {
  910. text-align: left;
  911. }
  912. .is-assigned {
  913. padding-top: 0;
  914. }
  915. }
  916. // Event detail columns
  917. .event-details-container {
  918. flex-direction: column;
  919. margin: 0;
  920. .primary {
  921. max-width: 100%;
  922. .box {
  923. padding: 15px 0;
  924. .box-header {
  925. h3 {
  926. margin: 0 0 10px;
  927. small {
  928. margin-left: 0 !important;
  929. display: block;
  930. }
  931. }
  932. .permalink {
  933. display: none;
  934. }
  935. }
  936. }
  937. .user-report {
  938. padding: 15px 0;
  939. }
  940. .exception {
  941. margin: 0;
  942. padding: 15px 0;
  943. }
  944. .traceback {
  945. &.no-exception {
  946. margin: 0;
  947. }
  948. .btn-toggle {
  949. width: 17px;
  950. }
  951. }
  952. }
  953. .secondary {
  954. width: auto;
  955. padding: 0;
  956. border: 0;
  957. margin-bottom: 20px;
  958. }
  959. .detailed-error {
  960. border-top: 1px solid @trim;
  961. }
  962. }
  963. // Context callout
  964. .context-summary {
  965. flex-direction: column;
  966. margin-top: 0;
  967. padding: 0;
  968. margin-bottom: 20px;
  969. }
  970. .context {
  971. overflow: auto;
  972. li {
  973. width: 800px;
  974. }
  975. }
  976. }