group-detail.less 18 KB

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