default.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107
  1. body {
  2. font-family: 'Inter', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  3. font-size: 14px;
  4. color: #1e293b;
  5. -webkit-font-smoothing: antialiased;
  6. text-rendering: optimizeLegibility;
  7. -webkit-font-feature-settings: "kern";
  8. -moz-font-feature-settings: "kern";
  9. -moz-font-feature-settings: "kern=1";
  10. font-feature-settings: "kern" 1;
  11. font-kerning: normal;
  12. overflow: hidden;
  13. }
  14. a {
  15. cursor: pointer;
  16. }
  17. input[type="radio"], input[type="checkbox"] {
  18. margin: 0px 9px 0px 0px;
  19. vertical-align: bottom;
  20. }
  21. input {
  22. -webkit-box-sizing: border-box;
  23. -moz-box-sizing: border-box;
  24. box-sizing: border-box;
  25. }
  26. input[type=text]::-ms-clear {
  27. width: 0;
  28. height: 0;
  29. display: none;
  30. }
  31. #outerContainer {
  32. position: absolute;
  33. width:1000px;
  34. height:1500px;
  35. overflow: hidden;
  36. display: flex;
  37. }
  38. #mobileControlFrameContainer {
  39. position: absolute;
  40. width: 100%;
  41. pointer-events: none;
  42. }
  43. .splitbar {
  44. display: none;
  45. position: absolute;
  46. top: 0px;
  47. width: 3px;
  48. height: 100%;
  49. cursor: ew-resize;
  50. z-index: 5;
  51. user-select: none;
  52. }
  53. .splitbar:hover, .splitbar.active {
  54. background: #CBD5E0;
  55. }
  56. #lsplitbar {
  57. border-right: 1px solid #CBD5E0;
  58. }
  59. #rsplitbar {
  60. border-left: 1px solid #CBD5E0;
  61. }
  62. #mainPanel {
  63. background-color: #d8d8d8;
  64. opacity: 0;
  65. flex: 1;
  66. overflow: hidden;
  67. }
  68. #clippingBounds {
  69. width: 100%;
  70. overflow: hidden;
  71. pointer-events: none;
  72. position: absolute;
  73. z-index: 1;
  74. }
  75. #clippingBounds div {
  76. pointer-events: auto;
  77. }
  78. #clippingBoundsScrollContainer {
  79. position: absolute;
  80. pointer-events: none;
  81. }
  82. #browserOutOfDateNotification {
  83. width: 100%;
  84. height: 289px;
  85. background-color: #e36154;
  86. padding-top: 40px;
  87. color: #FFFFFF;
  88. }
  89. .mobileMode #browserOutOfDateNotification {
  90. padding-top: 15px;
  91. }
  92. #supportedBrowsersListContainer {
  93. border-radius: 5px;
  94. line-height: 1.64;
  95. background-color: #c3463a;
  96. padding-top: 4px;
  97. width: 255px;
  98. margin: auto;
  99. }
  100. .browserName {
  101. display: inline-block;
  102. width: 55%;
  103. font-weight: bold;
  104. margin-left: 18px;
  105. }
  106. .browserSupportedVersion {
  107. display: inline-block;
  108. font-style: italic;
  109. }
  110. #browserOutOfDateNotificationButtons {
  111. display: flex;
  112. justify-content: flex-end;
  113. margin-top: 28px;
  114. }
  115. .mobileMode #browserOutOfDateNotificationButtons {
  116. margin-top: 8px;
  117. }
  118. #updateBrowserButton {
  119. display: inline-block;
  120. width: 330px;
  121. height: 35px;
  122. margin-left: auto;
  123. line-height: 35px;
  124. text-decoration: none;
  125. text-align: center;
  126. border-radius: 9px;
  127. border: solid 1px #FFFFFF;
  128. color: #FFFFFF;
  129. }
  130. #continueToPrototypeButton {
  131. display: inline-block;
  132. text-align: center;
  133. line-height: 37px;
  134. text-decoration: underline;
  135. }
  136. #topPanel {
  137. z-index: 1;
  138. height: 40px;
  139. background-color: #FFFFFF;
  140. border-bottom: 1px solid #E2E8F0;
  141. user-select: none;
  142. }
  143. .leftPanel, .rightPanel, .mobileOnlyPanel {
  144. position: relative;
  145. background-color: #FFFFFF;
  146. overflow: hidden;
  147. width: 0px;
  148. flex-shrink: 0;
  149. }
  150. .popup, .leftPanel.popup {
  151. position: absolute;
  152. z-index: 20000;
  153. display: none;
  154. background-color: #f8fafc;
  155. border: solid 1px #e2e8f0;
  156. position: absolute;
  157. box-shadow: 0 1px 2px 0 rgba(87, 87, 87, 0.5)
  158. }
  159. .leftPanel.popup .sitemapHeader, .leftPanel.popup #searchDiv {
  160. display: none;
  161. }
  162. #clipFrameScroll {
  163. }
  164. .splitterMask {
  165. position: absolute;
  166. top: 0;
  167. left: 0;
  168. width: 100%;
  169. height: 100%;
  170. overflow: hidden;
  171. background-image: url(../images/transparent.gif);
  172. z-index: 10000;
  173. -moz-user-select: none;
  174. -webkit-user-select: none;
  175. -ms-user-select: none;
  176. user-select: none;
  177. }
  178. #maximizePanelContainer {
  179. font-size: 4px;
  180. overflow: hidden;
  181. z-index: 1000;
  182. display: none;
  183. }
  184. #maximizePanel {
  185. background-color: #FCFDFF;
  186. cursor: pointer;
  187. }
  188. #maximizePanelContainer, #maximizePanelOver, #maximizePanel {
  189. position:absolute;
  190. left: 0px;
  191. top: 0px;
  192. width: 28px;
  193. height: 28px;
  194. }
  195. #interfaceControlFrameMinimizeContainer {
  196. font-size: 2px; /*for IE*/
  197. text-align: right;
  198. z-index: 100;
  199. height: 28px;
  200. width: 28px;
  201. border-right: solid 1px #E2E8F0;
  202. margin: auto 0;
  203. }
  204. #interfaceControlFrameMinimizeContainer a {
  205. display: inline-block;
  206. width: 28px;
  207. height: 100%;
  208. font-size: 2px;
  209. text-decoration: none;
  210. }
  211. #interfaceControlFrame {
  212. height: 100%;
  213. display: flex;
  214. opacity: 0;
  215. }
  216. #interfaceControlFrameCloseContainer {
  217. display: none;
  218. font-size: 9px;
  219. font-weight: bold;
  220. letter-spacing: 1px;
  221. z-index: 100;
  222. width: 55px;
  223. background-color: #62666b;
  224. text-align: center;
  225. }
  226. #interfaceControlFrameCloseContainer a {
  227. display: inline-block;
  228. width: 55px;
  229. color: #ffffff;
  230. padding: 5px 0px;
  231. }
  232. #inspectControlFrameHeader li {
  233. float: left;
  234. display: block;
  235. position: relative;
  236. width: 28px;
  237. height: 28px;
  238. margin: 6px;
  239. box-sizing: border-box;
  240. -moz-box-sizing: border-box;
  241. -webkit-box-sizing: border-box;
  242. }
  243. .ax-button {
  244. font-family: 'Source Sans Pro', 'Trebuchet MS', Arial;
  245. font-weight: 600;
  246. font-size: 12px;
  247. color: #F7FAFC;
  248. text-align: center;
  249. white-space: nowrap;
  250. background-color: #3EACEF;
  251. user-select: none;
  252. border: none;
  253. padding: 3px 16px;
  254. display: inline-block;
  255. cursor: pointer;
  256. border-radius: 4px;
  257. }
  258. .ax-button:hover {
  259. background-color: #1482c5;
  260. }
  261. .pluginHint {
  262. position: absolute;
  263. display: flex;
  264. flex-direction: column;
  265. align-items: end;
  266. top: 100%;
  267. box-sizing: border-box;
  268. padding: 10px;
  269. font-size: 11px;
  270. font-weight: normal;
  271. line-height: normal;
  272. text-align: left;
  273. width: 180px;
  274. background: #ffffff;
  275. border: 1px solid #d7d7d7;
  276. color: #718096;
  277. left: 50%;
  278. transform: translateX(-50%);
  279. box-shadow: 0px 1px 3px rgba(26, 32, 44, 0.2);
  280. }
  281. .pluginHint button {
  282. margin-top: 10px;
  283. }
  284. .pluginHint.left {
  285. left: 50%;
  286. right: auto;
  287. transform: translateX(-20px);
  288. }
  289. .pluginHint.right {
  290. left: auto;
  291. right: 50%;
  292. transform: translateX(20px);
  293. }
  294. .pluginHint::after {
  295. content: "";
  296. width: 10px;
  297. height: 10px;
  298. border-top: 1px solid #d7d7d7;
  299. border-left: 1px solid #d7d7d7;
  300. background-color: #fff;
  301. position: absolute;
  302. top: -6px;
  303. transform: translateX(-50%) rotate(45deg);
  304. left: 50%;
  305. }
  306. .pluginHint.left::after {
  307. left: 20px;
  308. right: auto;
  309. transform: translateX(-50%) rotate(45deg);
  310. }
  311. .pluginHint.right::after {
  312. left: auto;
  313. right: 20px;
  314. transform: translateX(50%) rotate(45deg);
  315. }
  316. #inspectControlFrameHeader li a {
  317. height: 100%;
  318. display: block;
  319. text-align: center;
  320. outline: none;
  321. text-decoration: none;
  322. white-space: nowrap;
  323. background-color: transparent;
  324. box-sizing: border-box;
  325. -moz-box-sizing: border-box;
  326. -webkit-box-sizing: border-box;
  327. }
  328. .hashover #inspectControlFrameHeader li a:hover {
  329. border-radius: 3px;
  330. background-color: #E5E7EB66;
  331. }
  332. /*#inspectControlFrameHeader li a.selected, #inspectControlFrameHeader li a.selected:hover {
  333. background-color: inherit;
  334. }*/
  335. #inspectControlFrameHeaderContainer {
  336. overflow: visible;
  337. }
  338. #inspectControlFrameHeader {
  339. position: relative;
  340. list-style: none;
  341. z-index: 50;
  342. letter-spacing: 1px;
  343. display: flex;
  344. }
  345. #projectControlFrameHeaderContainer {
  346. overflow: visible;
  347. }
  348. #projectControlFrameHeader {
  349. position: relative;
  350. list-style: none;
  351. font-size: 8px;
  352. z-index: 50;
  353. font-weight: bold;
  354. letter-spacing: 1px;
  355. }
  356. #projectControlFrameHeader li {
  357. position: relative;
  358. float: left;
  359. display: block;
  360. box-sizing: border-box;
  361. -moz-box-sizing: border-box;
  362. -webkit-box-sizing: border-box;
  363. }
  364. #projectControlFrameHeader li a {
  365. display: block;
  366. height: 100%;
  367. width: 32px;
  368. outline: none;
  369. margin-bottom: 3px;
  370. text-decoration: none;
  371. color: #ffffff;
  372. white-space: nowrap;
  373. box-sizing: border-box;
  374. -moz-box-sizing: border-box;
  375. -webkit-box-sizing: border-box;
  376. }
  377. .hashover #projectControlFrameHeader li a:hover {
  378. border-radius: 3px;
  379. background-color: #E5E7EB66;
  380. }
  381. /*#projectControlFrameHeader li a.selected, #projectControlFrameHeader li a.selected:hover {
  382. background-color: inherit;
  383. }*/
  384. #publishContainer {
  385. display: none;
  386. margin: 6px 20.5px 5px;
  387. width: 150px;
  388. height: 25px;
  389. border-radius: 10px;
  390. background-color: #008dcb;
  391. }
  392. #publishContainer.preview {
  393. display: block;
  394. }
  395. #overflowBtn {
  396. order: 5;
  397. }
  398. #overflowMenuButton {
  399. background: url('../images/overflow-icon.svg') no-repeat center center, linear-gradient(transparent,transparent);
  400. }
  401. #overflowMenuButton.selected {
  402. background: url('../images/overflow_icon_off.svg') no-repeat center center, linear-gradient(transparent,transparent);
  403. }
  404. .overflowOptionCheckbox, #projectOptionsHotspotsCheckbox {
  405. position: relative;
  406. display: inline-block;
  407. }
  408. .overflowOptionCheckbox {
  409. width: 10px;
  410. height: 10px;
  411. margin-right: 10px;
  412. top: 1px;
  413. }
  414. #projectOptionsHotspotsCheckbox {
  415. width: 16px;
  416. height: 16px;
  417. margin-right: 25px;
  418. margin-left: 21px;
  419. top: 2.5px;
  420. }
  421. .overflowOptionCheckbox.selected, #projectOptionsHotspotsCheckbox.selected {
  422. background: url('../images/overflow_checkmark.svg') no-repeat center center;
  423. }
  424. #overflowMenuContainer {
  425. display: none;
  426. flex-direction: column;
  427. top: 36px;
  428. right: 80px;
  429. border-radius: 2px;
  430. }
  431. #overflowMenuContainer.popup {
  432. display: flex;
  433. }
  434. #scaleMenuContainer {
  435. display: none;
  436. flex-direction: column;
  437. top: 36px;
  438. right: 200px;
  439. border-radius: 2px;
  440. }
  441. .vpZoomValue {
  442. padding: 4px 9px 4px 34px;
  443. cursor: pointer;
  444. user-select: none;
  445. margin: 4px;
  446. border-radius: 2px;
  447. }
  448. .vpZoomValue.selected {
  449. background: url(../images/overflow_checkmark.svg) no-repeat 9px center;
  450. }
  451. .vpZoomValue:hover {
  452. background-color: #E5E7EB66;
  453. }
  454. .showOption {
  455. font-size: 14px;
  456. padding: 4px 9px;
  457. margin: 4px;
  458. border-radius: 2px;
  459. }
  460. .showOption:hover {
  461. cursor: pointer;
  462. background-color: #E5E7EB66;
  463. }
  464. #publishButton {
  465. display: block;
  466. width: 95px;
  467. margin: auto;
  468. font-size: 14px;
  469. line-height: 26px;
  470. color: #ffffff;
  471. }
  472. .maximizeCaret {
  473. width: 5px;
  474. height: 5px;
  475. object-fit: contain;
  476. border-right: solid 1.5px #525252;
  477. border-top: solid 1.5px #525252;
  478. margin: auto;
  479. }
  480. .caret {
  481. width: 9px;
  482. height: 7px;
  483. background: url('../images/caret_down.svg') no-repeat center center, linear-gradient(transparent,transparent);
  484. }
  485. .selected .caret {
  486. background: url('../images/caret_down_off.svg') no-repeat center center, linear-gradient(transparent,transparent);
  487. }
  488. .upCaret {
  489. transform: rotate(-45deg);
  490. }
  491. .leftCaret {
  492. transform: rotate(-135deg);
  493. }
  494. .downCaret {
  495. transform: rotate(-225deg);
  496. }
  497. .rightCaret {
  498. transform: rotate(-315deg);
  499. }
  500. #pageSelectDropdown, #adaptiveViewsDropdown {
  501. display: inline-block;
  502. margin-left: 8px;
  503. }
  504. .minimizeIcon, .maximizeIcon {
  505. transition: .25s linear;
  506. position: absolute;
  507. height: 28px;
  508. width: 28px;
  509. }
  510. #minimizeX {
  511. background: url('../images/close.svg') no-repeat center center, linear-gradient(transparent,transparent);
  512. }
  513. #minimizeArrow {
  514. opacity: 0;
  515. transform: rotate(180deg);
  516. background: url('../images/left_arrow.svg') no-repeat center center, linear-gradient(transparent,transparent);
  517. }
  518. #maximizeButton {
  519. transform: rotate(0deg);
  520. background: url('../images/left_arrow.svg') no-repeat center center, linear-gradient(transparent,transparent);
  521. }
  522. .collapseHovered #minimizeX {
  523. transition: .25s linear;
  524. opacity: 0;
  525. transform: rotate(0deg);
  526. }
  527. .collapseHovered #minimizeArrow {
  528. transition: .25s linear;
  529. opacity: 1;
  530. transform: rotate(0deg);
  531. }
  532. #maximizeButton.rotated {
  533. transition: .20s linear;
  534. transform: rotate(-180deg);
  535. }
  536. .expandHovered #minimizeX {
  537. opacity: 0;
  538. }
  539. .expandHovered #minimizeArrow {
  540. opacity: 1;
  541. }
  542. #separatorContainer {
  543. display: none;
  544. line-height: 24px;
  545. height: 28px;
  546. margin: 6px 0 6px 6px;
  547. }
  548. #separatorContainer.hasLeft {
  549. display: block;
  550. }
  551. .separator {
  552. display: block;
  553. width: 1px;
  554. height: 100%;
  555. background-color: #CBD5E0;
  556. }
  557. #interfacePageNameContainer {
  558. float: left;
  559. cursor: pointer;
  560. }
  561. #sitemapControlFrameContainer {
  562. display: flex;
  563. margin: 6px;
  564. }
  565. .hashover #sitemapControlFrameContainer:hover {
  566. border-radius: 3px;
  567. background-color: #E5E7EB66;
  568. }
  569. /*.hashover #sitemapControlFrameContainer.selected:hover {
  570. background-color: inherit;
  571. }*/
  572. #interfaceOverflowMenuContainer {
  573. position: absolute;
  574. display: none;
  575. width: 220px;
  576. background-color: #FCFDFF;
  577. right: 240px;
  578. }
  579. .pageNameHeader {
  580. float: left;
  581. white-space: nowrap;
  582. overflow: hidden;
  583. text-overflow: ellipsis;
  584. max-width: 175px;
  585. font-weight: 600;
  586. }
  587. .pageCountHeader {
  588. float: left;
  589. white-space: nowrap;
  590. margin-left: 5px;
  591. margin-right: 6px;
  592. }
  593. #interfaceAdaptiveViewsContainer {
  594. display: none;
  595. margin: 4px 0px 4px 30.5px;
  596. padding: 0px 6px;
  597. cursor: pointer;
  598. }
  599. #interfaceAdaptiveViewsContainer:hover {
  600. border-radius: 3px;
  601. background-color: #E5E7EB66;
  602. }
  603. .adaptiveViewHeader {
  604. white-space: nowrap;
  605. overflow: hidden;
  606. text-overflow: ellipsis;
  607. }
  608. #interfaceAdaptiveViewsButton {
  609. float: left;
  610. max-width: 145px;
  611. }
  612. #interfaceAdaptiveViewsIconButton {
  613. display: none;
  614. float:left;
  615. width: 16px;
  616. background: url('../images/views-icon.svg') no-repeat center center, linear-gradient(transparent,transparent);
  617. }
  618. #interfaceScaleContainer {
  619. line-height: 36px;
  620. padding: 0px 10px;
  621. cursor: pointer;
  622. }
  623. .scaleHeader {
  624. white-space: nowrap;
  625. overflow: hidden;
  626. text-overflow: ellipsis;
  627. }
  628. #overflowMadeWith {
  629. line-height: 36px;
  630. margin: 0px 12px;
  631. }
  632. #axureLogo {
  633. display: inline-block;
  634. width: 56px;
  635. height: 36px;
  636. padding-top: 1px;
  637. background: url('../images/axure9_logo.svg') no-repeat center center, linear-gradient(transparent,transparent);
  638. }
  639. #overflowMenuContainer > #overflowMadeWith {
  640. line-height: 24px;
  641. border-top: 1px solid #ccc;
  642. margin-top: 7px;
  643. padding-top: 7px;
  644. }
  645. #interfaceControlFrameContainer {
  646. overflow: hidden;
  647. height: 40px;
  648. display: flex;
  649. }
  650. #interfaceControlFrameLeft {
  651. flex: 1;
  652. display: flex;
  653. font-size: 14px;
  654. line-height: 29px;
  655. color: #1e293b;
  656. }
  657. #interfaceControlFrameRight {
  658. flex: 1;
  659. display: flex;
  660. justify-content: flex-end;
  661. }
  662. #interfaceControlFrameLogoContainer {
  663. overflow: hidden;
  664. margin-left: auto;
  665. margin-right: auto;
  666. height: 100%;
  667. display: flex;
  668. }
  669. #interfaceControlFrameLogoCaptionContainer {
  670. text-align: center;
  671. margin: 5px 10px 0px 10px;
  672. font-size: 14px;
  673. color: #4a4a4a;
  674. font-weight: bold;
  675. line-height: 30px;
  676. white-space: nowrap;
  677. overflow: hidden;
  678. text-overflow: ellipsis;
  679. }
  680. #previewNotice {
  681. font-size: 14px;
  682. line-height: 36px;
  683. display: none;
  684. }
  685. #scaleMenuButton {
  686. display: flex;
  687. align-items: center;
  688. margin: 6px 0;
  689. padding: 0 6px;
  690. }
  691. #scaleMenuButton:hover {
  692. border-radius: 3px;
  693. background-color: #E5E7EB66;
  694. cursor: pointer;
  695. }
  696. #expandScaleArrow {
  697. margin-left: 6px;
  698. }
  699. #logoImage {
  700. margin: 12px;
  701. max-width: 150px;
  702. max-height: 12px;
  703. }
  704. .emptyStateContainer {
  705. text-align: center;
  706. padding: 0px 15px;
  707. color: #64748B;
  708. }
  709. .emptyStateTitle {
  710. margin: 0px 0px 9px 0px;
  711. font-weight: bold;
  712. }
  713. .emptyStateContent {
  714. padding: 0px 10px;
  715. line-height: 22px;
  716. }
  717. .dottedDivider {
  718. height: 2px;
  719. margin: 15px 10px 15px 10px;
  720. border-bottom: 1px solid #E2E8F0;
  721. /*background: url('../images/divider.png') no-repeat center center;*/
  722. /*background: url('../images/divider.svg') no-repeat center center, linear-gradient(transparent,transparent);*/
  723. }
  724. .mobileMode .dottedDivider {
  725. display: none;
  726. }
  727. .nondottedDivider {
  728. height: 2px;
  729. margin: 9px 0px 9px 0px;
  730. }
  731. .lineDivider {
  732. height: 2px;
  733. margin: 10px 15px 20px 15px;
  734. border-bottom: solid 1px #E2E8F0;
  735. /*opacity: .5;*/
  736. }
  737. .pluginNameHeader {
  738. font-size: 14px;
  739. font-weight: 500;
  740. flex: 1;
  741. }
  742. .mobileMode .pluginNameHeader {
  743. margin: 14px 12px 13px 12px;
  744. font-size: 18px;
  745. /*color: #6d6d6d;*/
  746. }
  747. #projectOptionsHost {
  748. display: flex;
  749. flex-direction: column;
  750. }
  751. #projectOptionsScrollContainer {
  752. overflow: auto;
  753. width: 100%;
  754. -webkit-overflow-scrolling: touch;
  755. flex: 1;
  756. }
  757. div.mobileSubHeader {
  758. font-size: 18px;
  759. font-weight: bold;
  760. color: #4a4a4a;
  761. margin: 0px 12px 11px 15px;
  762. }
  763. div.mobileText, span.mobileText {
  764. font-size: 16px;
  765. color: #4a4a4a;
  766. }
  767. .nativeMenuText {
  768. height: 20px;
  769. font-size: 14px;
  770. text-align: center;
  771. color: #ffffff;
  772. margin-top: 6px;
  773. margin-bottom: 13px;
  774. text-decoration: none;
  775. }
  776. #refreshText, #exitText {
  777. margin-top: 6px;
  778. }
  779. #returnText {
  780. margin-top: 7px;
  781. }
  782. #refreshIcon {
  783. height: 20px;
  784. object-fit: contain;
  785. background: url('../images/refresh.svg') no-repeat center center, linear-gradient(transparent,transparent);
  786. margin-top: 14px;
  787. }
  788. #exitIcon {
  789. height: 19px;
  790. object-fit: contain;
  791. background: url('../images/exit.svg') no-repeat center center, linear-gradient(transparent,transparent);
  792. margin-top: 14px;
  793. }
  794. #returnIcon {
  795. height: 46px;
  796. object-fit: contain;
  797. background: url('../images/return.svg') no-repeat center center, linear-gradient(transparent,transparent);
  798. }
  799. .nativePrototypeButton {
  800. width:50%;
  801. margin-left:auto;
  802. margin-right:auto;
  803. }
  804. .circleBackground {
  805. border-radius: 50%;
  806. behavior: url(PIE.htc);
  807. margin: auto;
  808. box-shadow: 3px 3px 3px 0 rgba(55, 55, 55, 0.5);
  809. }
  810. #returnBackground {
  811. width: 46px;
  812. height: 46px;
  813. background-color: #ffffff;
  814. }
  815. #closeBackground {
  816. width: 61px;
  817. height: 61px;
  818. background-color: #FCFDFF;
  819. }
  820. .closeIconSlash {
  821. width: 35px;
  822. height: 5px;
  823. background-color: #9b9b9b;
  824. position: relative;
  825. margin: auto;
  826. }
  827. #forwardSlash{
  828. top: 28px;
  829. transform: rotate(-45deg);
  830. }
  831. #backwardSlash{
  832. transform: rotate(90deg);
  833. }
  834. .mobilePrototypeControlFrame {
  835. position: absolute;
  836. display: none;
  837. width: 100%;
  838. min-width: 310px;
  839. bottom: 0px;
  840. z-index: 2;
  841. pointer-events: auto;
  842. }
  843. #nativeMenuBlueBackground {
  844. height: 72px;
  845. width: 100%;
  846. background-color: #008fe0;
  847. }
  848. #mHideSidebar {
  849. position: absolute;
  850. width: 10000px;
  851. height: 100%;
  852. background-color: rgba(0, 0, 0, 0.5);
  853. top: 0px;
  854. z-index: 2;
  855. display: none;
  856. left: -60px;
  857. }
  858. .closeButtonContainerFb {
  859. position: absolute;
  860. right: 0;
  861. top: 0;
  862. }
  863. .closeButtonContainerFb button {
  864. font-size: 12px;
  865. padding: 12px;
  866. margin: 0px 6px;
  867. color: #718096;
  868. cursor: pointer;
  869. background: url('../images/close.svg') no-repeat center center;
  870. background-color: inherit;
  871. border: none;
  872. border-radius: 4px;
  873. }
  874. .closeButtonContainerFb button:hover {
  875. background-color: rgba(229, 231, 235, 0.4);
  876. }
  877. .closeButtonContainer {
  878. position: absolute;
  879. right: 0;
  880. top: 10px;
  881. }
  882. .closeButtonContainer button {
  883. display: block;
  884. height: 8px;
  885. width: 8px;
  886. padding: 14px;
  887. margin: 4px;
  888. cursor: pointer;
  889. background: url('../images/close.svg') no-repeat center center;
  890. border: none;
  891. border-radius: 4px;
  892. }
  893. .closeButtonContainer button:hover {
  894. background-color: rgba(229, 231, 235, 0.4);
  895. }
  896. /*@media (max-width: 419px) {*/
  897. .mobileMode #topPanel {
  898. display: none;
  899. }
  900. .mobileMode #mainPanel {
  901. -webkit-overflow-scrolling: touch;
  902. }
  903. .mobileMode .leftPanel, .mobileMode .rightPanel, .mobileMode .mobileOnlyPanel {
  904. box-shadow: 0 5.5px 5px 0 rgba(0, 0, 0, 0.24), 0 9px 18px 0 rgba(0, 0, 0, 0.18);
  905. top: 45px;
  906. left: 100px;
  907. }
  908. .mobileMode .leftPanel, .mobileMode .rightPanel, .mobileMode .mobileOnlyPanel {
  909. float: left;
  910. }
  911. .mobileMode .rightPanel {
  912. margin-left: 13px;
  913. }
  914. .mobileMode #maximizePanelContainer {
  915. display: none;
  916. }
  917. /*}*/
  918. @media (max-width: 850px) {
  919. #overflowMenuContainer {
  920. right: 0px;
  921. }
  922. #overflowMadeWith, #publishContainer.preview, #separatorContainer, #separatorContainer.hasLeft {
  923. display: none;
  924. }
  925. #interfaceControlFrameLogoCaptionContainer {
  926. display: none;
  927. }
  928. #interfaceControlFrameContainer {
  929. justify-content: flex-end;
  930. }
  931. #interfaceAdaptiveViewsButton {
  932. display: none;
  933. }
  934. #interfaceAdaptiveViewsIconButton {
  935. display: block;
  936. }
  937. #interfaceAdaptiveViewsContainer {
  938. padding-left: 8px;
  939. }
  940. #scaleMenuContainer {
  941. right: 120px;
  942. }
  943. }
  944. @media (max-width: 700px) {
  945. #interfacePageNameContainer {
  946. display: none;
  947. }
  948. }