group-detail.less 18 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165
  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 6px 6px 6px;
  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: 5px;
  190. border-top-left-radius: 5px;
  191. }
  192. }
  193. &:last-child .title {
  194. border-bottom-right-radius: 5px;
  195. border-bottom-left-radius: 5px;
  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. }
  259. .title {
  260. padding: 6px 20px;
  261. font-size: 13px;
  262. margin: 0;
  263. line-height: 16px;
  264. background: #faf9fb;
  265. word-break: break-all;
  266. /* for firefox */
  267. word-break: break-word;
  268. /* for chrome */
  269. code {
  270. font-family: inherit;
  271. }
  272. .informal {
  273. font-style: italic;
  274. }
  275. }
  276. .title.as-table {
  277. width: 100%;
  278. padding-left: 15px;
  279. .package {
  280. font-size: 13px;
  281. font-weight: bold;
  282. .truncate;
  283. flex-basis: 120px;
  284. flex-grow: 0;
  285. flex-shrink: 0;
  286. }
  287. .address {
  288. font-family: @font-family-code;
  289. font-size: 11px;
  290. color: @gray-dark;
  291. letter-spacing: -0.25px;
  292. width: 100px;
  293. flex-grow: 0;
  294. flex-shrink: 0;
  295. }
  296. .symbol {
  297. word-break: break-word;
  298. flex: 1;
  299. code {
  300. background: transparent;
  301. color: @blue-dark;
  302. padding-right: 5px;
  303. a {
  304. color: inherit;
  305. &:hover {
  306. text-decoration: underline;
  307. }
  308. }
  309. }
  310. span.offset {
  311. font-weight: bold;
  312. padding-right: 10px;
  313. }
  314. span.filename {
  315. color: @purple;
  316. margin-right: 3px;
  317. &:before {
  318. content: '(';
  319. }
  320. &:after {
  321. content: ')';
  322. }
  323. }
  324. }
  325. }
  326. .original-src {
  327. font-size: 12px;
  328. padding-left: 3px;
  329. position: relative;
  330. top: 1px;
  331. }
  332. .icon-open {
  333. font-size: 12px;
  334. margin-right: 3px;
  335. margin-left: 3px;
  336. position: relative;
  337. top: 1px;
  338. }
  339. .in-at {
  340. opacity: 0.6;
  341. margin: 0 2px;
  342. }
  343. .blame {
  344. color: lighten(@gray, 5);
  345. a {
  346. color: @gray;
  347. }
  348. .icon-mark-github {
  349. position: relative;
  350. top: 1px;
  351. }
  352. }
  353. .tooltip-inner {
  354. word-wrap: break-word;
  355. text-align: left;
  356. max-width: 300px;
  357. }
  358. .divider {
  359. border-left: 1px solid @trim;
  360. display: inline-block;
  361. width: 1px;
  362. height: 10px;
  363. margin: 0 6px;
  364. position: relative;
  365. top: 1px;
  366. }
  367. code {
  368. padding: 0;
  369. background: inherit;
  370. font-size: inherit;
  371. color: inherit;
  372. }
  373. .empty-context {
  374. padding: 20px;
  375. color: @gray;
  376. p {
  377. display: inline-block;
  378. margin-bottom: 0;
  379. }
  380. .icon {
  381. opacity: 0.45;
  382. margin-right: 10px;
  383. font-size: 0.85em;
  384. }
  385. }
  386. .context {
  387. display: none;
  388. background: #fff;
  389. margin: 0;
  390. table.key-value {
  391. border-top: 1px solid @trim;
  392. padding: 0;
  393. margin: 0;
  394. td {
  395. border-bottom: 1px solid @trim !important;
  396. &.key {
  397. width: 145px;
  398. max-width: 145px;
  399. padding-left: 20px !important;
  400. }
  401. &.value pre {
  402. background: inherit;
  403. }
  404. }
  405. tr:last-child {
  406. td {
  407. border-bottom: 0 !important;
  408. }
  409. }
  410. }
  411. &.expanded {
  412. display: block;
  413. }
  414. }
  415. .tag-app {
  416. color: #aaa;
  417. font-size: 0.9em;
  418. margin-left: 10px;
  419. }
  420. > div > table.key-value {
  421. margin-bottom: 5px;
  422. > tbody > tr > th {
  423. color: @gray-dark;
  424. text-align: right;
  425. padding-right: 12px !important;
  426. }
  427. }
  428. .btn-toggle {
  429. display: block;
  430. float: right;
  431. width: 16px;
  432. height: 16px;
  433. padding: 0;
  434. line-height: 16px;
  435. font-size: 9px;
  436. text-align: center;
  437. flex-shrink: 0;
  438. }
  439. .expand-button:hover {
  440. cursor: pointer;
  441. }
  442. &.expanded {
  443. .expandable {
  444. height: auto;
  445. max-width: 100%;
  446. }
  447. }
  448. &:last-child {
  449. .context {
  450. margin-bottom: 0;
  451. }
  452. .toggle-expand .btn {
  453. margin-bottom: -13px;
  454. }
  455. }
  456. }
  457. &.in-app-traceback .frame.leads-to-app {
  458. .leads-to-app-hint {
  459. display: none;
  460. }
  461. &.collapsed {
  462. .title {
  463. padding: 4px 20px 4px 20px;
  464. background: #faf9fb;
  465. min-height: 32px;
  466. &.is-expandable:hover {
  467. opacity: 1;
  468. }
  469. .package {
  470. width: auto;
  471. }
  472. }
  473. .title.as-table {
  474. padding-left: 15px;
  475. }
  476. .in-at-line,
  477. .lineno,
  478. .btn-toggle,
  479. .address {
  480. display: none;
  481. }
  482. .leads-to-app-hint {
  483. display: inline;
  484. color: @gray-light;
  485. }
  486. }
  487. }
  488. &.full-traceback {
  489. .leads-to-app-hint {
  490. display: none !important;
  491. }
  492. }
  493. .expandable {
  494. height: 0;
  495. position: relative;
  496. .icon-plus {
  497. position: absolute;
  498. left: 8px;
  499. top: 6px;
  500. opacity: 0.25;
  501. transition: 0.1s opacity linear;
  502. }
  503. &.key-value {
  504. display: none;
  505. }
  506. .ws {
  507. display: none;
  508. overflow: hidden;
  509. }
  510. &:hover {
  511. .icon-plus {
  512. opacity: 0.5;
  513. }
  514. }
  515. }
  516. .expanded {
  517. .expandable {
  518. height: auto;
  519. }
  520. .ws {
  521. display: inline;
  522. overflow: none;
  523. }
  524. }
  525. ol.context {
  526. margin: 0;
  527. list-style-position: inside;
  528. list-style-type: decimal-leading-zero;
  529. border-radius: 5px;
  530. padding-left: 0;
  531. .key-value {
  532. display: none;
  533. pre {
  534. overflow: auto;
  535. }
  536. }
  537. > li {
  538. font-family: @font-family-code;
  539. line-height: 24px;
  540. font-size: 12px;
  541. white-space: pre;
  542. white-space: pre-wrap;
  543. word-wrap: break-word;
  544. min-height: 24px;
  545. }
  546. > li.active {
  547. list-style-type: none;
  548. border-radius: 2px;
  549. &:first-child:last-child {
  550. background-color: inherit;
  551. color: inherit;
  552. border-radius: 0;
  553. }
  554. pre {
  555. color: @gray-dark;
  556. }
  557. }
  558. > li:first-child {
  559. border-radius: 2px 2px 0 0;
  560. }
  561. > li:last-of-type {
  562. border-radius: 0 0 2px 2px;
  563. }
  564. li.closed {
  565. border-radius: 2px;
  566. }
  567. &.expanded {
  568. .key-value {
  569. display: table;
  570. }
  571. > li.active {
  572. position: relative;
  573. z-index: 0;
  574. list-style-type: inherit;
  575. border-radius: 0;
  576. }
  577. }
  578. }
  579. ol.context-line {
  580. > li {
  581. > span {
  582. float: right;
  583. }
  584. }
  585. }
  586. }
  587. #full-message {
  588. line-height: 1.5em;
  589. &#full-message {
  590. background: none;
  591. padding: 0;
  592. }
  593. }
  594. &.expanded div.commands,
  595. div.commands:hover {
  596. opacity: 1;
  597. a {
  598. color: @state-info-text;
  599. }
  600. }
  601. div.commands {
  602. position: absolute;
  603. right: 10px;
  604. top: 6px;
  605. font-size: 0.9em;
  606. opacity: 0.3;
  607. a {
  608. color: #666;
  609. text-decoration: none;
  610. span {
  611. font-size: 9px;
  612. margin-right: 5px;
  613. }
  614. }
  615. }
  616. // Request
  617. .request {
  618. .path {
  619. font-weight: normal;
  620. float: left;
  621. strong {
  622. margin-right: 4px;
  623. }
  624. }
  625. }
  626. /* message details */
  627. .server-list,
  628. .url-list,
  629. .logger-list,
  630. .level-list {
  631. list-style: none;
  632. margin-left: 0;
  633. margin-bottom: 0;
  634. }
  635. .server-list li,
  636. .url-list li {
  637. padding-bottom: 10px;
  638. }
  639. .url-list li a {
  640. line-height: 18px;
  641. }
  642. pre.val,
  643. span.val {
  644. span {
  645. display: inline;
  646. }
  647. }
  648. .val-string {
  649. border-radius: 4px;
  650. padding: 2px 4px;
  651. }
  652. .val-string-multiline {
  653. display: block;
  654. overflow: auto;
  655. }
  656. .val-stripped {
  657. color: darken(@red, 10);
  658. background: transparent;
  659. }
  660. .val-bool,
  661. .val-null {
  662. color: darken(@blue, 10);
  663. font-weight: bold;
  664. }
  665. .val-dict {
  666. display: inline;
  667. .val-dict-items {
  668. display: block;
  669. padding: 0 0 0 15px;
  670. .val-dict-pair {
  671. display: block;
  672. }
  673. }
  674. .val-dict-key,
  675. .val-dict-key .val-string {
  676. color: darken(@red, 5);
  677. background: transparent;
  678. border-radius: none;
  679. }
  680. }
  681. .val-array {
  682. .val-array-items {
  683. display: block;
  684. padding: 0 0 0 15px;
  685. .val-array-item {
  686. display: block;
  687. }
  688. }
  689. }
  690. /**
  691. * Exceptions and Threads
  692. * ============================================================================
  693. */
  694. .box .thread {
  695. .exception {
  696. margin-top: 10px;
  697. }
  698. .traceback.no-exception {
  699. margin-top: 0;
  700. }
  701. }
  702. /**
  703. * Shared Group Detail
  704. * ============================================================================
  705. */
  706. .shared-group {
  707. padding: 40px 0;
  708. background: none;
  709. .app > .container {
  710. max-width: 960px;
  711. > .box {
  712. > .box-header {
  713. padding: 15px 30px 13px;
  714. display: flex;
  715. align-items: center;
  716. a {
  717. &.logo {
  718. font-size: 20px;
  719. flex: 1;
  720. }
  721. &:hover {
  722. color: @gray-dark;
  723. }
  724. }
  725. .back-to,
  726. .pull-right a {
  727. font-size: 16px;
  728. }
  729. .back-to {
  730. border-left: 1px solid @trim;
  731. padding: 2px 10px;
  732. display: inline-block;
  733. margin-left: 7px;
  734. position: relative;
  735. top: -3px;
  736. }
  737. }
  738. }
  739. }
  740. .container {
  741. padding-left: 0;
  742. padding-right: 0;
  743. }
  744. .group-detail {
  745. padding: 0 30px;
  746. border-bottom: 1px solid darken(@trim, 5);
  747. box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
  748. &:before {
  749. display: none;
  750. }
  751. .details {
  752. max-width: 960px;
  753. margin: 0 auto;
  754. padding: 20px 0 0;
  755. }
  756. }
  757. .event-details-container {
  758. display: block;
  759. margin: 0;
  760. .primary {
  761. max-width: 100%;
  762. .box {
  763. padding: 0 30px;
  764. &:first-child {
  765. border-top: 0;
  766. }
  767. }
  768. .box-header,
  769. .box-content {
  770. max-width: 960px;
  771. margin: 0 auto;
  772. }
  773. .box-header {
  774. margin-top: 15px;
  775. }
  776. .exception {
  777. padding: 20px 0;
  778. margin: 0;
  779. &:first-child {
  780. padding-top: 0;
  781. }
  782. }
  783. .traceback.no-exception {
  784. margin-bottom: 25px;
  785. margin-top: -5px;
  786. }
  787. }
  788. }
  789. }
  790. /**
  791. * Breadcrumbs / Timeline
  792. * ============================================================================
  793. */
  794. ul.crumbs {
  795. li {
  796. .table.key-value {
  797. margin-bottom: 0;
  798. background: none;
  799. thead td:first-child {
  800. font-weight: bold;
  801. }
  802. td {
  803. padding: 2px 0 !important;
  804. font-weight: normal;
  805. }
  806. .key {
  807. width: 122px;
  808. max-width: 122px;
  809. color: @gray-dark;
  810. line-height: 1.6 !important;
  811. }
  812. pre {
  813. display: inline-block;
  814. padding: 0;
  815. margin-top: 1px;
  816. background: none;
  817. word-break: break-all;
  818. }
  819. }
  820. div.summary {
  821. overflow: hidden;
  822. &.can-expand {
  823. cursor: pointer;
  824. position: relative;
  825. &:after {
  826. position: absolute;
  827. bottom: 0;
  828. left: 0;
  829. right: 0;
  830. content: ' ';
  831. display: block;
  832. width: 100%;
  833. height: 15px;
  834. background-image: linear-gradient(
  835. to bottom,
  836. rgba(255, 255, 255, 0) 0%,
  837. rgba(255, 255, 255, 1) 100%
  838. );
  839. background-repeat: repeat-x;
  840. z-index: 1;
  841. }
  842. &:hover {
  843. &:before {
  844. position: absolute;
  845. bottom: 4px;
  846. right: 0;
  847. font-family: 'sentry-simple';
  848. content: '\e617';
  849. background: @white-dark;
  850. border: 1px solid darken(@trim, 5);
  851. border-radius: 3px;
  852. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  853. z-index: 2;
  854. padding: 0 5px;
  855. margin-left: -14px;
  856. }
  857. }
  858. }
  859. &.expanded {
  860. max-height: none;
  861. &:after,
  862. &:before {
  863. display: none;
  864. }
  865. }
  866. pre {
  867. display: inline-block;
  868. }
  869. }
  870. }
  871. }
  872. /**
  873. * Responsive medium screen
  874. * ============================================================================
  875. */
  876. @media (max-width: 991px) {
  877. .group-stats-column {
  878. float: none;
  879. }
  880. }
  881. /**
  882. * Responsive small screen
  883. * ============================================================================
  884. */
  885. @media (max-width: 767px) {
  886. .group-detail {
  887. h3 {
  888. white-space: normal;
  889. font-size: 20px;
  890. line-height: 1.2;
  891. }
  892. .meta {
  893. font-size: 13px;
  894. }
  895. .short-id-box {
  896. text-align: left;
  897. }
  898. .is-assigned {
  899. padding-top: 0;
  900. }
  901. }
  902. // Event detail columns
  903. .event-details-container {
  904. flex-direction: column;
  905. margin: 0;
  906. .primary {
  907. max-width: 100%;
  908. .box {
  909. padding: 15px 0;
  910. .box-header {
  911. h3 {
  912. margin: 0 0 10px;
  913. small {
  914. margin-left: 0 !important;
  915. display: block;
  916. }
  917. }
  918. .permalink {
  919. display: none;
  920. }
  921. }
  922. }
  923. .user-report {
  924. padding: 15px 0;
  925. }
  926. .exception {
  927. margin: 0;
  928. padding: 15px 0;
  929. }
  930. .traceback {
  931. &.no-exception {
  932. margin: 0;
  933. }
  934. .btn-toggle {
  935. width: 17px;
  936. }
  937. }
  938. }
  939. .secondary {
  940. width: auto;
  941. padding: 0;
  942. border: 0;
  943. margin-bottom: 20px;
  944. }
  945. .detailed-error {
  946. border-top: 1px solid @trim;
  947. }
  948. }
  949. // Context callout
  950. .context-summary {
  951. flex-direction: column;
  952. margin-top: 0;
  953. padding: 0;
  954. margin-bottom: 20px;
  955. }
  956. .context {
  957. overflow: auto;
  958. li {
  959. width: 800px;
  960. }
  961. }
  962. }