style.css 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199
  1. /*
  2. * Copyright 2011-2024 GatlingCorp (https://gatling.io)
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. :root {
  17. --gatling-background-color: #f2f2f2;
  18. --gatling-background-light-color: #f7f7f7;
  19. --gatling-border-color: #dddddd;
  20. --gatling-blue-color: #4a9fe5;
  21. --gatling-dark-blue-color: #24275e;
  22. --gatling-danger-color: #f15b4f;
  23. --gatling-danger-light-color: #f5d1ce;
  24. --gatling-enterprise-color: #6161d6;
  25. --gatling-enterprise-light-color: #c4c4ed;
  26. --gatling-gray-medium-color: #bbb;
  27. --gatling-hover-color: #e6e6e6;
  28. --gatling-hover-background-color: #e6e6e6;
  29. --gatling-light-color: #ffffff;
  30. --gatling-orange-color: #f78557;
  31. --gatling-success-color: #68b65c;
  32. --gatling-text-color: #1f2024;
  33. --gatling-total-color: #ffa900;
  34. --gatling-border-radius: 2px;
  35. --gatling-spacing-small: 5px;
  36. --gatling-spacing: 10px;
  37. --gatling-spacing-layout: 20px;
  38. --gatling-font-weight-normal: 400;
  39. --gatling-font-weight-medium: 500;
  40. --gatling-font-weight-bold: 700;
  41. --gatling-font-size-secondary: 12px;
  42. --gatling-font-size-default: 14px;
  43. --gatling-font-size-heading: 16px;
  44. --gatling-font-size-section: 22px;
  45. --gatling-font-size-header: 34px;
  46. --gatling-media-desktop-large: 1920px;
  47. }
  48. html[data-theme="dark"] {
  49. --gatling-background-color: #1e2225;
  50. --gatling-background-light-color: #272c30;
  51. --gatling-border-color: #555555;
  52. --gatling-blue-color: #1188ff;
  53. --gatling-dark-blue-color: #17223B;
  54. --gatling-danger-color: #d9534f;
  55. --gatling-danger-light-color: #c9302c;
  56. --gatling-enterprise-color: #b2a2ea;
  57. --gatling-enterprise-light-color: #343479;
  58. --gatling-gray-medium-color: #999;
  59. --gatling-hover-color: #30363b;
  60. --gatling-hover-background-color: #2c2c2c;
  61. --gatling-light-color: #394046;
  62. --gatling-orange-color: #fe8e5f;
  63. --gatling-success-color: #5cb85c;
  64. --gatling-text-color: #dee2e6;
  65. --gatling-total-color: #ffa900;
  66. }
  67. * {
  68. min-height: 0;
  69. min-width: 0;
  70. }
  71. html,
  72. body {
  73. height: 100%;
  74. width: 100%;
  75. }
  76. body {
  77. color: var(--gatling-text-color);
  78. font-family: arial;
  79. font-size: var(--gatling-font-size-secondary);
  80. margin: 0;
  81. }
  82. .app-container {
  83. display: flex;
  84. flex-direction: column;
  85. height: 100%;
  86. width: 100%;
  87. }
  88. .head {
  89. display: flex;
  90. align-items: center;
  91. justify-content: space-between;
  92. flex-direction: row;
  93. flex: 1;
  94. background-color: var(--gatling-light-color);
  95. border-bottom: 1px solid var(--gatling-border-color);
  96. min-height: 69px;
  97. padding: 0 var(--gatling-spacing-layout);
  98. }
  99. .head .spacer {
  100. flex-grow: 1;
  101. }
  102. .head .theme-toggle {
  103. margin-left: 20px;
  104. background: none;
  105. color: var(--gatling-text-color);
  106. border: none;
  107. }
  108. .head .theme-toggle:hover {
  109. color: var(--gatling-gray-medium-color);
  110. cursor: pointer;
  111. }
  112. body .toggle-dark, body .toggle-light {
  113. display: block;
  114. }
  115. [data-theme="dark"] body .toggle-dark {
  116. display: none;
  117. }
  118. [data-theme="light"] body .toggle-light {
  119. display: none;
  120. }
  121. [data-theme="dark"] body .logo-enterprise-light {
  122. display: none;
  123. }
  124. [data-theme="light"] body .logo-enterprise-dark {
  125. display: none;
  126. }
  127. .gatling-open-source {
  128. display: flex;
  129. align-items: center;
  130. justify-content: space-between;
  131. flex-direction: row;
  132. gap: var(--gatling-spacing-layout);
  133. }
  134. .gatling-documentation {
  135. display: flex;
  136. align-items: center;
  137. background-color: var(--gatling-light-color);
  138. border-radius: var(--gatling-border-radius);
  139. color: var(--gatling-orange-color);
  140. border: 1px solid var(--gatling-orange-color);
  141. text-align: center;
  142. padding: var(--gatling-spacing-small) var(--gatling-spacing);
  143. height: 23px;
  144. font-size: var(--gatling-font-size-default);
  145. }
  146. .gatling-documentation:hover {
  147. background-color: var(--gatling-orange-color);
  148. color: var(--gatling-light-color);
  149. }
  150. .gatling-logo {
  151. height: 35px;
  152. }
  153. .gatling-logo img {
  154. height: 100%;
  155. }
  156. [data-theme="dark"] .gatling-logo-light {
  157. display: none;
  158. }
  159. [data-theme="light"] .gatling-logo-dark {
  160. display: none;
  161. }
  162. .container {
  163. display: flex;
  164. align-items: stretch;
  165. height: 100%;
  166. }
  167. .nav {
  168. min-width: 210px;
  169. width: 210px;
  170. max-height: calc(100vh - var(--gatling-spacing-layout) - var(--gatling-spacing-layout));
  171. background: var(--gatling-light-color);
  172. border-right: 1px solid var(--gatling-border-color);
  173. overflow-y: auto;
  174. }
  175. @media print {
  176. .nav {
  177. display: none;
  178. }
  179. }
  180. @media screen and (min-width: 1920px) {
  181. .nav {
  182. min-width: 310px;
  183. width: 310px;
  184. }
  185. }
  186. .nav ul {
  187. display: flex;
  188. flex-direction: column;
  189. padding: 0;
  190. margin: 0;
  191. }
  192. .nav li {
  193. display: flex;
  194. list-style: none;
  195. width: 100%;
  196. padding: 0;
  197. }
  198. .nav .item {
  199. display: inline-flex;
  200. align-items: center;
  201. margin: 0 auto;
  202. white-space: nowrap;
  203. color: var(--gatling-text-color);
  204. font-size: var(--gatling-font-size-default);
  205. font-weight: var(--gatling-font-weight-bold);
  206. margin: 0;
  207. width: 100%;
  208. }
  209. .nav .item .nav-label {
  210. padding: var(--gatling-spacing) var(--gatling-spacing-layout);
  211. }
  212. .nav .item:hover {
  213. background-color: var(--gatling-hover-color);
  214. }
  215. .nav .on .item {
  216. background-color: var(--gatling-orange-color);
  217. }
  218. .nav .on .item span {
  219. color: var(--gatling-light-color);
  220. }
  221. .cadre {
  222. width: 100%;
  223. height: 100%;
  224. overflow-y: scroll;
  225. scroll-behavior: smooth;
  226. }
  227. @media print {
  228. .cadre {
  229. overflow-y: unset;
  230. }
  231. }
  232. .frise {
  233. position: absolute;
  234. top: 60px;
  235. z-index: -1;
  236. background-color: var(--gatling-background-color);
  237. height: 530px;
  238. }
  239. .global {
  240. height: 650px
  241. }
  242. a {
  243. text-decoration: none;
  244. }
  245. a:hover {
  246. color: var(--gatling-hover-color);
  247. }
  248. img {
  249. border: 0;
  250. }
  251. h1 {
  252. color: var(--gatling-dark-blue-color);
  253. font-size: var(--gatling-font-size-section);
  254. font-weight: var(--gatling-font-weight-medium);
  255. text-align: center;
  256. margin: 0;
  257. }
  258. h1 span {
  259. color: var(--gatling-hover-color);
  260. }
  261. .enterprise {
  262. display: flex;
  263. align-items: center;
  264. justify-content: center;
  265. gap: var(--gatling-spacing-small);
  266. background-color: var(--gatling-light-color);
  267. border-radius: var(--gatling-border-radius);
  268. border: 1px solid var(--gatling-enterprise-color);
  269. color: var(--gatling-enterprise-color);
  270. text-align: center;
  271. padding: var(--gatling-spacing-small) var(--gatling-spacing);
  272. height: 25px;
  273. }
  274. .enterprise:hover {
  275. background-color: var(--gatling-hover-color);
  276. color: var(--gatling-enterprise-color);
  277. }
  278. .enterprise img {
  279. display: block;
  280. width: 160px;
  281. }
  282. .simulation-card {
  283. display: flex;
  284. flex-direction: column;
  285. align-self: stretch;
  286. flex: 1;
  287. gap: var(--gatling-spacing-layout);
  288. max-height: 375px;
  289. }
  290. #simulation-information {
  291. flex: 1;
  292. }
  293. .simulation-version-information {
  294. display: flex;
  295. flex-direction: column;
  296. gap: var(--gatling-spacing);
  297. font-size: var(--gatling-font-size-default);
  298. background-color: var(--gatling-background-light-color);
  299. border: 1px solid var(--gatling-border-color);
  300. border-radius: var(--gatling-border-radius);
  301. padding: var(--gatling-spacing);
  302. }
  303. .simulation-information-container {
  304. display: flex;
  305. flex-direction: column;
  306. gap: var(--gatling-spacing);
  307. }
  308. .withTooltip .popover-title {
  309. display: none;
  310. }
  311. .popover-content p {
  312. margin: 0;
  313. }
  314. html[data-theme="dark"] div.popover {
  315. background-color: var(--gatling-light-color);
  316. border-bottom: none;
  317. }
  318. html[data-theme="dark"] div.popover.right .arrow {
  319. border-right-color: var(--gatling-light-color);
  320. }
  321. .ellipsed-name {
  322. display: block;
  323. overflow: hidden;
  324. white-space: nowrap;
  325. text-overflow: ellipsis;
  326. }
  327. .simulation-information-item {
  328. display: flex;
  329. flex-direction: row;
  330. align-items: flex-start;
  331. gap: var(--gatling-spacing-small);
  332. }
  333. .simulation-information-item.description {
  334. flex-direction: column;
  335. }
  336. .simulation-information-label {
  337. display: inline-block;
  338. font-weight: var(--gatling-font-weight-bold);
  339. min-width: fit-content;
  340. }
  341. .simulation-information-title {
  342. display: block;
  343. text-align: center;
  344. color: var(--gatling-text-color);
  345. font-weight: var(--gatling-font-weight-bold);
  346. font-size: var(--gatling-font-size-heading);
  347. width: 100%;
  348. }
  349. .simulation-tooltip span {
  350. display: inline-block;
  351. word-wrap: break-word;
  352. overflow: hidden;
  353. text-overflow: ellipsis;
  354. }
  355. .content {
  356. display: flex;
  357. flex-direction: column;
  358. }
  359. .content-in {
  360. width: 100%;
  361. height: 100%;
  362. overflow-x: scroll;
  363. }
  364. html[data-theme="dark"] .content-in {
  365. background-color: var(--gatling-background-color);
  366. }
  367. @media print {
  368. .content-in {
  369. overflow-x: unset;
  370. }
  371. }
  372. .container-article {
  373. display: flex;
  374. flex-direction: column;
  375. gap: var(--gatling-spacing-layout);
  376. min-width: 1050px;
  377. width: 1050px;
  378. margin: 0 auto;
  379. padding: var(--gatling-spacing-layout);
  380. box-sizing: border-box;
  381. }
  382. @media screen and (min-width: 1920px) {
  383. .container-article {
  384. min-width: 1350px;
  385. width: 1350px;
  386. }
  387. #responses * .highcharts-tracker {
  388. transform: translate(400px, 70px);
  389. }
  390. }
  391. .content-header {
  392. display: flex;
  393. flex-direction: column;
  394. gap: var(--gatling-spacing-layout);
  395. background-color: var(--gatling-background-light-color);
  396. border-bottom: 1px solid var(--gatling-border-color);
  397. padding: var(--gatling-spacing-layout) var(--gatling-spacing-layout) 0;
  398. }
  399. .onglet {
  400. font-size: var(--gatling-font-size-header);
  401. font-weight: var(--gatling-font-weight-medium);
  402. text-align: center;
  403. }
  404. .sous-menu {
  405. display: flex;
  406. flex-direction: row;
  407. align-items: center;
  408. justify-content: space-between;
  409. }
  410. .sous-menu-spacer {
  411. display: flex;
  412. align-items: center;
  413. flex-direction: row;
  414. }
  415. .sous-menu .item {
  416. margin-bottom: -1px;
  417. }
  418. .sous-menu a {
  419. display: block;
  420. font-size: var(--gatling-font-size-heading);
  421. font-weight: var(--gatling-font-weight-normal);
  422. padding: var(--gatling-spacing-small) var(--gatling-spacing) var(--gatling-spacing);
  423. border-bottom: 2px solid transparent;
  424. color: var(--gatling-text-color);
  425. text-align: center;
  426. width: 100px;
  427. }
  428. .sous-menu a:hover {
  429. border-bottom-color: var(--gatling-text-color);
  430. }
  431. .sous-menu .ouvert a {
  432. border-bottom-color: var(--gatling-orange-color);
  433. font-weight: var(--gatling-font-weight-bold);
  434. }
  435. .article {
  436. position: relative;
  437. display: flex;
  438. flex-direction: column;
  439. gap: var(--gatling-spacing-layout);
  440. }
  441. .infos {
  442. width: 340px;
  443. color: var(--gatling-light-color);
  444. }
  445. .infos-title {
  446. background-color: var(--gatling-background-light-color);
  447. border: 1px solid var(--gatling-border-color);
  448. border-bottom: 0;
  449. border-top-left-radius: var(--gatling-border-radius);
  450. border-top-right-radius: var(--gatling-border-radius);
  451. color: var(--gatling-text-color);
  452. font-size: var(--gatling-font-size-heading);
  453. font-weight: var(--gatling-font-weight-bold);
  454. text-align: center;
  455. padding: var(--gatling-spacing-small) var(--gatling-spacing);
  456. }
  457. .info {
  458. background-color: var(--gatling-background-light-color);
  459. border-bottom-left-radius: var(--gatling-border-radius);
  460. border-bottom-right-radius: var(--gatling-border-radius);
  461. border: 1px solid var(--gatling-border-color);
  462. color: var(--gatling-text-color);
  463. height: 100%;
  464. margin: 0;
  465. }
  466. .info table {
  467. margin: auto;
  468. padding-right: 15px;
  469. }
  470. .alert-danger {
  471. background-color: var(--gatling-danger-light-color);
  472. border: 1px solid var(--gatling-danger-color);
  473. border-radius: var(--gatling-border-radius);
  474. color: var(--gatling-text-color);
  475. padding: var(--gatling-spacing-layout);
  476. font-weight: var(--gatling-font-weight-bold);
  477. }
  478. .infos h2 {
  479. color: var(--gatling-text-color);
  480. font-size: var(--gatling-font-size-default);
  481. font-weight: var(--gatling-font-weight-bold);
  482. height: 19px;
  483. margin: 0;
  484. padding: 3.5px 0 0 35px;
  485. }
  486. .infos .first::before {
  487. content: '';
  488. display: inline-block;
  489. margin-right: 5px;
  490. margin-bottom: 2px;
  491. vertical-align: middle;
  492. width: 14px;
  493. height: 14px;
  494. background: url('executions.svg');
  495. background-size: contain;
  496. }
  497. .infos .second::before {
  498. content: '';
  499. display: inline-block;
  500. margin-right: 5px;
  501. margin-bottom: 2px;
  502. vertical-align: middle;
  503. width: 16px;
  504. height: 16px;
  505. background: url('time.svg');
  506. background-size: contain;
  507. }
  508. html[data-theme="dark"] .infos .first::before,
  509. html[data-theme="dark"] .infos .second::before {
  510. filter: invert(0.9);
  511. }
  512. .infos th {
  513. text-align: center;
  514. }
  515. .infos td {
  516. font-weight: var(--gatling-font-weight-bold);
  517. padding: var(--gatling-spacing-small);
  518. -webkit-border-radius: var(--gatling-border-radius);
  519. -moz-border-radius: var(--gatling-border-radius);
  520. -ms-border-radius: var(--gatling-border-radius);
  521. -o-border-radius: var(--gatling-border-radius);
  522. border-radius: var(--gatling-border-radius);
  523. text-align: right;
  524. width: 50px;
  525. }
  526. .infos .title {
  527. width: 120px;
  528. }
  529. .infos .ok {
  530. background-color: var(--gatling-success-color);
  531. color: var(--gatling-light-color);
  532. }
  533. .infos .total {
  534. background-color: var(--gatling-total-color);
  535. color: var(--gatling-light-color);
  536. }
  537. .infos .ko {
  538. background-color: var(--gatling-danger-color);
  539. -webkit-border-radius: var(--gatling-border-radius);
  540. border-radius: var(--gatling-border-radius);
  541. color: var(--gatling-light-color);
  542. }
  543. .schema-container {
  544. display: flex;
  545. align-items: center;
  546. justify-content: space-between;
  547. gap: var(--gatling-spacing-layout);
  548. }
  549. .schema {
  550. background: var(--gatling-background-light-color);
  551. border-radius: var(--gatling-border-radius);
  552. border: 1px solid var(--gatling-border-color);
  553. }
  554. .ranges {
  555. height: 375px;
  556. width: 500px;
  557. }
  558. .ranges-large {
  559. height: 375px;
  560. width: 530px;
  561. }
  562. .geant {
  563. height: 362px;
  564. }
  565. .extensible-geant {
  566. width: 100%;
  567. }
  568. .polar {
  569. height: 375px;
  570. width: 230px;
  571. }
  572. .chart_title {
  573. color: var(--gatling-text-color);
  574. font-weight: var(--gatling-font-weight-bold);
  575. font-size: var(--gatling-font-size-heading);
  576. padding: 2px var(--gatling-spacing);
  577. }
  578. html[data-theme="dark"] .chart_title {
  579. color: var(--gatling-text-color);
  580. font-weight: var(--gatling-font-weight-bold);
  581. font-size: var(--gatling-font-size-heading);
  582. padding: 2px var(--gatling-spacing);
  583. }
  584. html[data-theme="dark"] .highcharts-background {
  585. fill: var(--gatling-background-light-color);
  586. }
  587. html[data-theme="dark"] .highcharts-button-normal rect {
  588. fill: var(--gatling-background-color) !important;
  589. }
  590. html[data-theme="dark"] .highcharts-button-disabled rect {
  591. fill: var(--gatling-background-light-color) !important;
  592. }
  593. html[data-theme="dark"] .highcharts-button-pressed rect {
  594. fill: var(--gatling-orange-color) !important;
  595. }
  596. html[data-theme="dark"] .highcharts-axis text,
  597. html[data-theme="dark"] .highcharts-axis-labels text,
  598. html[data-theme="dark"] .highcharts-button text,
  599. html[data-theme="dark"] .highcharts-legend-item text,
  600. html[data-theme="dark"] .highcharts-range-selector-buttons text {
  601. fill: var(--gatling-text-color) !important;
  602. }
  603. .statistics {
  604. display: flex;
  605. flex-direction: column;
  606. background-color: var(--gatling-background-light-color);
  607. border-radius: var(--gatling-border-radius);
  608. border-collapse: collapse;
  609. color: var(--gatling-text-color);
  610. max-height: 100%;
  611. }
  612. .statistics .title {
  613. display: flex;
  614. text-align: center;
  615. justify-content: space-between;
  616. min-height: 49.5px;
  617. box-sizing: border-box;
  618. border: 1px solid var(--gatling-border-color);
  619. color: var(--gatling-text-color);
  620. font-size: var(--gatling-font-size-heading);
  621. font-weight: var(--gatling-font-weight-bold);
  622. padding: var(--gatling-spacing);
  623. }
  624. .title_base {
  625. display: flex;
  626. align-items: center;
  627. text-align: left;
  628. user-select: none;
  629. }
  630. .title_base_stats {
  631. color: var(--gatling-text-color);
  632. margin-right: 20px;
  633. }
  634. .toggle-table {
  635. position: relative;
  636. border: 1px solid var(--gatling-border-color);
  637. background-color: var(--gatling-light-color);
  638. border-radius: 25px;
  639. width: 40px;
  640. height: 20px;
  641. margin: 0 var(--gatling-spacing-small);
  642. }
  643. .toggle-table::before {
  644. position: absolute;
  645. top: calc(50% - 9px);
  646. left: 1px;
  647. content: "";
  648. width: 50%;
  649. height: 18px;
  650. border-radius: 50%;
  651. background-color: var(--gatling-text-color);
  652. }
  653. .toggle-table.off::before {
  654. left: unset;
  655. right: 1px;
  656. }
  657. .title_expanded {
  658. cursor: pointer;
  659. color: var(--gatling-text-color);
  660. }
  661. .expand-table,
  662. .collapse-table {
  663. font-size: var(--gatling-font-size-secondary);
  664. font-weight: var(--gatling-font-weight-normal);
  665. }
  666. .title_expanded span.expand-table {
  667. color: var(--gatling-gray-medium-color);
  668. }
  669. .title_collapsed {
  670. cursor: pointer;
  671. color: var(--gatling-text-color);
  672. }
  673. .title_collapsed span.collapse-table {
  674. color: var(--gatling-gray-medium-color);
  675. }
  676. #container_statistics_head {
  677. position: sticky;
  678. top: -1px;
  679. background: var(--gatling-background-light-color);
  680. margin-top: -1px;
  681. padding: var(--gatling-spacing-small) var(--gatling-spacing-small) 0px var(--gatling-spacing-small);
  682. }
  683. #container_statistics_body {
  684. border-bottom-left-radius: var(--gatling-border-radius);
  685. border-bottom-right-radius: var(--gatling-border-radius);
  686. margin-top: -1px;
  687. padding: 0px var(--gatling-spacing-small) var(--gatling-spacing-small) var(--gatling-spacing-small);
  688. }
  689. #container_errors {
  690. border-bottom-left-radius: var(--gatling-border-radius);
  691. border-bottom-right-radius: var(--gatling-border-radius);
  692. padding: var(--gatling-spacing-small) var(--gatling-spacing-small) 0px var(--gatling-spacing-small);
  693. margin-top: -1px;
  694. }
  695. #container_assertions {
  696. background-color: var(--gatling-background-light-color);
  697. border-bottom-left-radius: var(--gatling-border-radius);
  698. border-bottom-right-radius: var(--gatling-border-radius);
  699. padding: var(--gatling-spacing-small);
  700. margin-top: -1px;
  701. }
  702. .statistics-in {
  703. border-spacing: var(--gatling-spacing-small);
  704. border-collapse: collapse;
  705. margin: 0;
  706. }
  707. .statistics .scrollable {
  708. max-height: 100%;
  709. overflow-y: auto;
  710. }
  711. #statistics_table_container .statistics .scrollable {
  712. max-height: 785px;
  713. }
  714. .statistics-in a {
  715. color: var(--gatling-text-color);
  716. font-weight: var(--gatling-font-weight-bold);
  717. }
  718. .statistics-in .header {
  719. border-radius: var(--gatling-border-radius);
  720. border: 1px solid var(--gatling-border-color);
  721. font-size: var(--gatling-font-size-default);
  722. font-weight: var(--gatling-font-weight-bold);
  723. text-align: center;
  724. padding: var(--gatling-spacing-small);
  725. }
  726. .sortable {
  727. cursor: pointer;
  728. }
  729. .sortable span::after {
  730. content: '';
  731. display: inline-block;
  732. margin-left: 5px;
  733. vertical-align: middle;
  734. width: 12px;
  735. height: 12px;
  736. background: url('sort.svg');
  737. background-size: contain;
  738. }
  739. .sorted-up span::after {
  740. background: url('sort-up.svg');
  741. background-size: contain;
  742. }
  743. .sorted-down span::after {
  744. background: url('sort-down.svg');
  745. background-size: contain;
  746. }
  747. html[data-theme="dark"] .sortable span::after {
  748. filter: invert(0.9);
  749. }
  750. .executions::before {
  751. content: '';
  752. display: inline-block;
  753. margin-right: 5px;
  754. margin-bottom: 2px;
  755. vertical-align: middle;
  756. width: 14px;
  757. height: 14px;
  758. background: url('executions.svg');
  759. background-size: contain;
  760. }
  761. .response-time::before {
  762. content: '';
  763. display: inline-block;
  764. margin-right: 5px;
  765. margin-bottom: 2px;
  766. vertical-align: middle;
  767. width: 16px;
  768. height: 16px;
  769. background: url('time.svg');
  770. background-size: contain;
  771. }
  772. html[data-theme="dark"] .executions::before,
  773. html[data-theme="dark"] .response-time::before {
  774. filter: invert(0.9);
  775. }
  776. .statistics-in td {
  777. background-color: var(--gatling-light-color);
  778. border: 1px solid var(--gatling-border-color);
  779. padding: var(--gatling-spacing-small);
  780. min-width: 50px;
  781. }
  782. .statistics-in .col-1 {
  783. width: 175px;
  784. max-width: 175px;
  785. }
  786. @media screen and (min-width: 1200px) {
  787. .statistics-in .col-1 {
  788. width: 50%;
  789. }
  790. }
  791. .expandable-container {
  792. display: flex;
  793. flex-direction: row;
  794. box-sizing: border-box;
  795. max-width: 100%;
  796. }
  797. .statistics-in .value {
  798. text-align: right;
  799. width: 50px;
  800. }
  801. .statistics-in .total {
  802. color: var(--gatling-text-color);
  803. }
  804. .statistics-in .col-2 {
  805. background-color: var(--gatling-total-color);
  806. color: var(--gatling-light-color);
  807. font-weight: var(--gatling-font-weight-bold);
  808. }
  809. .statistics-in .error-col-1 {
  810. background-color: var(--gatling-light-color);
  811. color: var(--gatling-text-color);
  812. }
  813. .statistics-in .error-col-2 {
  814. text-align: center;
  815. }
  816. .statistics-in .ok {
  817. background-color: var(--gatling-success-color);
  818. color: var(--gatling-light-color);
  819. font-weight: var(--gatling-font-weight-bold);
  820. }
  821. .statistics-in .ko {
  822. background-color: var(--gatling-danger-color);
  823. color: var(--gatling-light-color);
  824. font-weight: var(--gatling-font-weight-bold);
  825. }
  826. .statistics-in .expand-button {
  827. padding-left: var(--gatling-spacing);
  828. cursor: pointer;
  829. }
  830. .expand-button.hidden {
  831. background: none;
  832. cursor: default;
  833. }
  834. .statistics-button {
  835. background-color: var(--gatling-light-color);
  836. color: var(--gatling-text-color);
  837. padding: var(--gatling-spacing-small) var(--gatling-spacing);
  838. border: 1px solid var(--gatling-border-color);
  839. border-radius: var(--gatling-border-radius);
  840. }
  841. #statistics_full_screen{
  842. padding: var(--gatling-spacing-small);
  843. }
  844. #statistics_full_screen > img {
  845. width: 14px;
  846. height: 14px;
  847. }
  848. html[data-theme="dark"] #statistics_full_screen > img {
  849. filter: invert(0.9);
  850. }
  851. #statistics_full_screen:disabled {
  852. display: none;
  853. }
  854. .statistics-button:hover:not(:disabled) {
  855. cursor: pointer;
  856. background-color: var(--gatling-hover-color);
  857. }
  858. .statistics-in .expand-button.expand {
  859. content: '';
  860. display: inline-block;
  861. vertical-align: middle;
  862. width: 2px;
  863. height: 10px;
  864. background: url('expand.svg');
  865. background-size: contain;
  866. }
  867. .statistics-in .expand-button.collapse {
  868. content: '';
  869. display: inline-block;
  870. vertical-align: middle;
  871. width: 2px;
  872. height: 10px;
  873. background: url('sort-down.svg');
  874. background-size: contain;
  875. }
  876. html[data-theme="dark"] .statistics-in .expand-button.collapse,
  877. html[data-theme="dark"] .statistics-in .expand-button.expand {
  878. filter: invert(0.9);
  879. }
  880. .nav .expand-button {
  881. padding: var(--gatling-spacing-small) var(--gatling-spacing);
  882. }
  883. .nav .expand-button.expand {
  884. content: '';
  885. display: inline-block;
  886. vertical-align: middle;
  887. height: 8px;
  888. background: url('expand.svg') no-repeat;
  889. background-size: contain;
  890. cursor: pointer;
  891. margin-top: 6px;
  892. }
  893. .nav .expand-button.collapse {
  894. content: '';
  895. display: inline-block;
  896. vertical-align: middle;
  897. height: 8px;
  898. background: url('sort-down.svg') no-repeat;
  899. background-size: contain;
  900. cursor: pointer;
  901. margin-top: 6px;
  902. }
  903. html[data-theme="dark"] .nav .expand-button.expand,
  904. html[data-theme="dark"] .nav .expand-button.collapse {
  905. filter: invert(0.9);
  906. }
  907. .right {
  908. display: flex;
  909. align-items: center;
  910. gap: var(--gatling-spacing);
  911. float: right;
  912. font-size: var(--gatling-font-size-default);
  913. }
  914. .withTooltip {
  915. outline: none;
  916. }
  917. .withTooltip:hover {
  918. text-decoration: none;
  919. }
  920. .withTooltip .tooltipContent {
  921. position: absolute;
  922. z-index: 10;
  923. display: none;
  924. background: var(--gatling-orange-color);
  925. -webkit-box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2);
  926. -moz-box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2);
  927. box-shadow: 1px 2px 4px 0px rgba(47, 47, 47, 0.2);
  928. border-radius: var(--gatling-border-radius);
  929. color: var(--gatling-light-color);
  930. margin-top: -5px;
  931. padding: var(--gatling-spacing-small);
  932. }
  933. .withTooltip:hover .tooltipContent {
  934. display: inline;
  935. }
  936. .button-modal {
  937. padding: var(--gatling-spacing-small);
  938. }
  939. .button-modal > img {
  940. width: 14px;
  941. height: 14px;
  942. }
  943. html[data-theme="dark"] .button-modal > img {
  944. filter: invert(0.9);
  945. }
  946. .statistics-table-modal {
  947. background-color: var(--gatling-background-color);
  948. height: calc(100% - 60px);
  949. width: calc(100% - 60px);
  950. border-radius: var(--gatling-border-radius);
  951. }
  952. .statistics-table-modal::backdrop {
  953. position: fixed;
  954. top: 0px;
  955. right: 0px;
  956. bottom: 0px;
  957. left: 0px;
  958. background-color: rgba(100, 100, 100, 0.9);
  959. }
  960. .statistics-table-modal-container {
  961. display: flex;
  962. flex-direction: column;
  963. width: 100%;
  964. height: calc(100% - 35px);
  965. overflow-x: auto;
  966. }
  967. .button-modal {
  968. cursor: pointer;
  969. height: 25px;
  970. width: 25px;
  971. border: 1px solid var(--gatling-border-color);
  972. background-color: var(--gatling-light-color);
  973. border-radius: var(--gatling-border-radius);
  974. color: var(--gatling-text-color);
  975. }
  976. .button-modal:hover {
  977. background-color: var(--gatling-background-color);
  978. }
  979. .statistics-table-modal-header {
  980. display: flex;
  981. align-items: flex-end;
  982. justify-content: flex-end;
  983. padding-bottom: var(--gatling-spacing);
  984. }
  985. .statistics-table-modal-content {
  986. flex: 1;
  987. overflow-y: auto;
  988. min-width: 1050px;
  989. }
  990. .statistics-table-modal-footer {
  991. display: flex;
  992. align-items: flex-end;
  993. justify-content: flex-end;
  994. padding-top: var(--gatling-spacing);
  995. }