group-detail.less 24 KB

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