default.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083
  1. body {
  2. font-family: 'Source Sans Pro', 'Trebuchet MS', Arial;
  3. font-size: 14px;
  4. color: #37465e;
  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: 36px;
  139. background-color: #FCFDFF;
  140. border-bottom: 1px solid #CBD5E0;
  141. user-select: none;
  142. }
  143. .leftPanel, .rightPanel, .mobileOnlyPanel {
  144. position: relative;
  145. background-color: #FCFDFF;
  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: #FCFDFF;
  155. border: solid 1px #bdbcbc;
  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: 36px;
  194. }
  195. #interfaceControlFrameMinimizeContainer {
  196. font-size: 2px; /*for IE*/
  197. text-align: right;
  198. z-index: 100;
  199. height: 36px;
  200. width: 28px;
  201. border-right: solid 1px #CBD5E0;
  202. }
  203. #interfaceControlFrameMinimizeContainer a {
  204. display: inline-block;
  205. width: 28px;
  206. height: 100%;
  207. font-size: 2px;
  208. text-decoration: none;
  209. }
  210. #interfaceControlFrame {
  211. height: 100%;
  212. display: flex;
  213. opacity: 0;
  214. }
  215. #interfaceControlFrameCloseContainer {
  216. display: none;
  217. font-size: 9px;
  218. font-weight: bold;
  219. letter-spacing: 1px;
  220. z-index: 100;
  221. width: 55px;
  222. background-color: #62666b;
  223. text-align: center;
  224. }
  225. #interfaceControlFrameCloseContainer a {
  226. display: inline-block;
  227. width: 55px;
  228. color: #ffffff;
  229. padding: 5px 0px;
  230. }
  231. #inspectControlFrameHeader li {
  232. float: left;
  233. display: block;
  234. position: relative;
  235. width: 42px;
  236. height: 36px;
  237. padding: 4px 5px 4px 5px;
  238. box-sizing: border-box;
  239. -moz-box-sizing: border-box;
  240. -webkit-box-sizing: border-box;
  241. }
  242. .ax-button {
  243. font-family: 'Source Sans Pro', 'Trebuchet MS', Arial;
  244. font-weight: 600;
  245. font-size: 12px;
  246. color: #F7FAFC;
  247. text-align: center;
  248. white-space: nowrap;
  249. background-color: #3EACEF;
  250. user-select: none;
  251. border: none;
  252. padding: 3px 16px;
  253. display: inline-block;
  254. cursor: pointer;
  255. border-radius: 4px;
  256. }
  257. .ax-button:hover {
  258. background-color: #1482c5;
  259. }
  260. .pluginHint {
  261. position: absolute;
  262. display: flex;
  263. flex-direction: column;
  264. align-items: end;
  265. top: 100%;
  266. box-sizing: border-box;
  267. padding: 10px;
  268. font-size: 11px;
  269. font-weight: normal;
  270. line-height: normal;
  271. text-align: left;
  272. width: 180px;
  273. background: #ffffff;
  274. border: 1px solid #d7d7d7;
  275. color: #718096;
  276. left: 50%;
  277. transform: translateX(-50%);
  278. box-shadow: 0px 1px 3px rgba(26, 32, 44, 0.2);
  279. }
  280. .pluginHint button {
  281. margin-top: 10px;
  282. }
  283. .pluginHint.left {
  284. left: 50%;
  285. right: auto;
  286. transform: translateX(-20px);
  287. }
  288. .pluginHint.right {
  289. left: auto;
  290. right: 50%;
  291. transform: translateX(20px);
  292. }
  293. .pluginHint::after {
  294. content: "";
  295. width: 10px;
  296. height: 10px;
  297. border-top: 1px solid #d7d7d7;
  298. border-left: 1px solid #d7d7d7;
  299. background-color: #fff;
  300. position: absolute;
  301. top: -6px;
  302. transform: translateX(-50%) rotate(45deg);
  303. left: 50%;
  304. }
  305. .pluginHint.left::after {
  306. left: 20px;
  307. right: auto;
  308. transform: translateX(-50%) rotate(45deg);
  309. }
  310. .pluginHint.right::after {
  311. left: auto;
  312. right: 20px;
  313. transform: translateX(50%) rotate(45deg);
  314. }
  315. #inspectControlFrameHeader li a {
  316. height: 100%;
  317. width: 32px;
  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: #EDEFF1;
  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: #EDEFF1;
  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. border: solid 1px #718096;
  407. display: inline-block;
  408. }
  409. .overflowOptionCheckbox {
  410. width: 10px;
  411. height: 10px;
  412. margin-right: 14px;
  413. top: 1px;
  414. }
  415. #projectOptionsHotspotsCheckbox {
  416. width: 16px;
  417. height: 16px;
  418. margin-right: 25px;
  419. margin-left: 21px;
  420. top: 2.5px;
  421. }
  422. .overflowOptionCheckbox.selected, #projectOptionsHotspotsCheckbox.selected {
  423. background: url('../images/overflow_checkmark.svg') no-repeat center center, linear-gradient(transparent,transparent);
  424. background-color: #75BB43;
  425. border: solid 1px #75BB43;
  426. background-size: contain;
  427. }
  428. #overflowMenuContainer {
  429. display: none;
  430. flex-direction: column;
  431. top: 36px;
  432. right: 80px;
  433. width: 171px;
  434. border-radius: 2px;
  435. padding-bottom: 9px;
  436. }
  437. #overflowMenuContainer.popup {
  438. display: flex;
  439. }
  440. #scaleMenuContainer {
  441. display: none;
  442. flex-direction: column;
  443. top: 36px;
  444. right: 200px;
  445. width: 140px;
  446. border-radius: 2px;
  447. }
  448. .vpZoomValue {
  449. padding: 5px 9px 5px 16px;
  450. cursor: pointer;
  451. user-select: none;
  452. }
  453. .vpZoomValue:hover {
  454. background-color: #EDEFF1;
  455. }
  456. .showOption {
  457. font-size: 14px;
  458. padding: 9px 0px 0px 15px;
  459. /*color: #3B3B3B;*/
  460. }
  461. .showOption:hover {
  462. cursor: pointer;
  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: 36px;
  508. width: 28px;
  509. }
  510. #minimizeX {
  511. background: url('../images/close_x_minimize.svg') no-repeat center center, linear-gradient(transparent,transparent);
  512. }
  513. #minimizeArrow {
  514. opacity: 0;
  515. transform: rotate(270deg);
  516. background: url('../images/caret_down.svg') no-repeat center center, linear-gradient(transparent,transparent);
  517. }
  518. #maximizeButton {
  519. transform: rotate(-270deg);
  520. background: url('../images/caret_down.svg') no-repeat center center, linear-gradient(transparent,transparent);
  521. }
  522. .collapseHovered #minimizeX {
  523. transition: .25s linear;
  524. opacity: 0;
  525. transform: rotate(-90deg);
  526. }
  527. .collapseHovered #minimizeArrow {
  528. transition: .25s linear;
  529. opacity: 1;
  530. transform: rotate(90deg);
  531. }
  532. #maximizeButton.rotated {
  533. transition: .20s linear;
  534. transform: rotate(-90deg);
  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: 36px;
  546. }
  547. #separatorContainer.hasLeft {
  548. display: block;
  549. }
  550. .separator {
  551. display: block;
  552. width: 1px;
  553. height: 100%;
  554. background-color: #CBD5E0;
  555. }
  556. #interfacePageNameContainer {
  557. float: left;
  558. cursor: pointer;
  559. }
  560. #sitemapControlFrameContainer {
  561. display: flex;
  562. margin: 4px 6px;
  563. }
  564. .hashover #sitemapControlFrameContainer:hover {
  565. border-radius: 3px;
  566. background-color: #EDEFF1;
  567. }
  568. /*.hashover #sitemapControlFrameContainer.selected:hover {
  569. background-color: inherit;
  570. }*/
  571. #interfaceOverflowMenuContainer {
  572. position: absolute;
  573. display: none;
  574. width: 220px;
  575. background-color: #FCFDFF;
  576. right: 240px;
  577. }
  578. .pageNameHeader {
  579. float: left;
  580. white-space: nowrap;
  581. overflow: hidden;
  582. text-overflow: ellipsis;
  583. max-width: 175px;
  584. margin-right: 6px;
  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: #EDEFF1;
  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. margin-right: 6px;
  617. background: url('../images/views-icon.svg') no-repeat center center, linear-gradient(transparent,transparent);
  618. }
  619. #interfaceScaleContainer {
  620. line-height: 36px;
  621. padding: 0px 10px;
  622. cursor: pointer;
  623. }
  624. .scaleHeader {
  625. white-space: nowrap;
  626. overflow: hidden;
  627. text-overflow: ellipsis;
  628. }
  629. #overflowMadeWith {
  630. line-height: 36px;
  631. margin: 0px 12px;
  632. }
  633. #axureLogo {
  634. display: inline-block;
  635. width: 56px;
  636. height: 36px;
  637. padding-top: 1px;
  638. background: url('../images/axure9_logo.svg') no-repeat center center, linear-gradient(transparent,transparent);
  639. }
  640. #overflowMenuContainer > #overflowMadeWith {
  641. line-height: 24px;
  642. border-top: 1px solid #ccc;
  643. margin-top: 7px;
  644. padding-top: 7px;
  645. }
  646. #interfaceControlFrameContainer {
  647. overflow: hidden;
  648. height: 36px;
  649. display: flex;
  650. }
  651. #interfaceControlFrameLeft {
  652. flex: 1;
  653. display: flex;
  654. font-size: 14px;
  655. line-height: 29px;
  656. color: #37465e;
  657. }
  658. #interfaceControlFrameRight {
  659. flex: 1;
  660. display: flex;
  661. justify-content: flex-end;
  662. }
  663. #interfaceControlFrameLogoContainer {
  664. overflow: hidden;
  665. margin-left: auto;
  666. margin-right: auto;
  667. height: 100%;
  668. display: flex;
  669. }
  670. #interfaceControlFrameLogoCaptionContainer {
  671. text-align: center;
  672. margin: 5px 10px 0px 10px;
  673. font-size: 14px;
  674. color: #4a4a4a;
  675. font-weight: bold;
  676. line-height: 30px;
  677. white-space: nowrap;
  678. overflow: hidden;
  679. text-overflow: ellipsis;
  680. }
  681. #previewNotice {
  682. font-size: 14px;
  683. line-height: 36px;
  684. display: none;
  685. }
  686. #scaleMenuButton {
  687. display: flex;
  688. align-items: center;
  689. margin: 4px 0;
  690. padding: 0 6px;
  691. }
  692. #scaleMenuButton:hover {
  693. border-radius: 3px;
  694. background-color: #EDEFF1;
  695. cursor: pointer;
  696. }
  697. #scaleValue {
  698. font-weight: bold;
  699. /*color: #6d6d6d;*/
  700. }
  701. #expandScaleArrow {
  702. margin-left: 6px;
  703. }
  704. #logoImage {
  705. margin: 12px;
  706. max-width: 150px;
  707. max-height: 12px;
  708. }
  709. .emptyStateContainer {
  710. text-align: center;
  711. /*padding: 0px 10px;*/
  712. margin-top: 32px;
  713. padding: 0px 15px;
  714. }
  715. .emptyStateTitle {
  716. margin: 0px 0px 9px 0px;
  717. font-weight: bold;
  718. }
  719. .emptyStateContent {
  720. padding: 0px 10px;
  721. line-height: 22px;
  722. }
  723. .dottedDivider {
  724. height: 2px;
  725. margin: 15px 10px 15px 10px;
  726. border-bottom: 1px solid #E2E8F0;
  727. /*background: url('../images/divider.png') no-repeat center center;*/
  728. /*background: url('../images/divider.svg') no-repeat center center, linear-gradient(transparent,transparent);*/
  729. }
  730. .mobileMode .dottedDivider {
  731. display: none;
  732. }
  733. .nondottedDivider {
  734. height: 2px;
  735. margin: 9px 0px 9px 0px;
  736. }
  737. .lineDivider {
  738. height: 2px;
  739. margin: 10px 15px 20px 15px;
  740. border-bottom: solid 1px #E2E8F0;
  741. /*opacity: .5;*/
  742. }
  743. .pluginNameHeader {
  744. font-size: 16px;
  745. font-weight: bold;
  746. flex: 1;
  747. margin-left: 4px;
  748. }
  749. .mobileMode .pluginNameHeader {
  750. margin: 14px 12px 13px 12px;
  751. font-size: 18px;
  752. /*color: #6d6d6d;*/
  753. }
  754. #projectOptionsHost {
  755. display: flex;
  756. flex-direction: column;
  757. }
  758. #projectOptionsScrollContainer {
  759. overflow: auto;
  760. width: 100%;
  761. -webkit-overflow-scrolling: touch;
  762. flex: 1;
  763. }
  764. div.mobileSubHeader {
  765. font-size: 18px;
  766. font-weight: bold;
  767. color: #4a4a4a;
  768. margin: 0px 12px 11px 15px;
  769. }
  770. div.mobileText, span.mobileText {
  771. font-size: 16px;
  772. color: #4a4a4a;
  773. }
  774. .nativeMenuText {
  775. height: 20px;
  776. font-size: 14px;
  777. text-align: center;
  778. color: #ffffff;
  779. margin-top: 6px;
  780. margin-bottom: 13px;
  781. text-decoration: none;
  782. }
  783. #refreshText, #exitText {
  784. margin-top: 6px;
  785. }
  786. #returnText {
  787. margin-top: 7px;
  788. }
  789. #refreshIcon {
  790. height: 20px;
  791. object-fit: contain;
  792. background: url('../images/refresh.svg') no-repeat center center, linear-gradient(transparent,transparent);
  793. margin-top: 14px;
  794. }
  795. #exitIcon {
  796. height: 19px;
  797. object-fit: contain;
  798. background: url('../images/exit.svg') no-repeat center center, linear-gradient(transparent,transparent);
  799. margin-top: 14px;
  800. }
  801. #returnIcon {
  802. height: 46px;
  803. object-fit: contain;
  804. background: url('../images/return.svg') no-repeat center center, linear-gradient(transparent,transparent);
  805. }
  806. .nativePrototypeButton {
  807. width:50%;
  808. margin-left:auto;
  809. margin-right:auto;
  810. }
  811. .circleBackground {
  812. border-radius: 50%;
  813. behavior: url(PIE.htc);
  814. margin: auto;
  815. box-shadow: 3px 3px 3px 0 rgba(55, 55, 55, 0.5);
  816. }
  817. #returnBackground {
  818. width: 46px;
  819. height: 46px;
  820. background-color: #ffffff;
  821. }
  822. #closeBackground {
  823. width: 61px;
  824. height: 61px;
  825. background-color: #FCFDFF;
  826. }
  827. .closeIconSlash {
  828. width: 35px;
  829. height: 5px;
  830. background-color: #9b9b9b;
  831. position: relative;
  832. margin: auto;
  833. }
  834. #forwardSlash{
  835. top: 28px;
  836. transform: rotate(-45deg);
  837. }
  838. #backwardSlash{
  839. transform: rotate(90deg);
  840. }
  841. .mobilePrototypeControlFrame {
  842. position: absolute;
  843. display: none;
  844. width: 100%;
  845. min-width: 310px;
  846. bottom: 0px;
  847. z-index: 2;
  848. pointer-events: auto;
  849. }
  850. #nativeMenuBlueBackground {
  851. height: 72px;
  852. width: 100%;
  853. background-color: #008fe0;
  854. }
  855. #mHideSidebar {
  856. position: absolute;
  857. width: 10000px;
  858. height: 100%;
  859. background-color: rgba(0, 0, 0, 0.5);
  860. top: 0px;
  861. z-index: 2;
  862. display: none;
  863. left: -60px;
  864. }
  865. .closeButtonContainer {
  866. position: absolute;
  867. right: 0;
  868. top: 0;
  869. }
  870. .closeButtonContainer button {
  871. font-size: 12px;
  872. padding: 5px 10px;
  873. color: #718096;
  874. cursor: pointer;
  875. background-color: inherit;
  876. border: none;
  877. }
  878. /*@media (max-width: 419px) {*/
  879. .mobileMode #topPanel {
  880. display: none;
  881. }
  882. .mobileMode #mainPanel {
  883. -webkit-overflow-scrolling: touch;
  884. }
  885. .mobileMode .leftPanel, .mobileMode .rightPanel, .mobileMode .mobileOnlyPanel {
  886. box-shadow: 0 5.5px 5px 0 rgba(0, 0, 0, 0.24), 0 9px 18px 0 rgba(0, 0, 0, 0.18);
  887. top: 45px;
  888. left: 100px;
  889. }
  890. .mobileMode .leftPanel, .mobileMode .rightPanel, .mobileMode .mobileOnlyPanel {
  891. float: left;
  892. }
  893. .mobileMode .rightPanel {
  894. margin-left: 13px;
  895. }
  896. .mobileMode #maximizePanelContainer {
  897. display: none;
  898. }
  899. /*}*/
  900. @media (max-width: 850px) {
  901. #overflowMenuContainer {
  902. right: 0px;
  903. }
  904. #overflowMadeWith, #publishContainer.preview, #separatorContainer, #separatorContainer.hasLeft {
  905. display: none;
  906. }
  907. #interfaceControlFrameLogoCaptionContainer {
  908. display: none;
  909. }
  910. #interfaceControlFrameContainer {
  911. justify-content: flex-end;
  912. }
  913. #interfaceAdaptiveViewsButton {
  914. display: none;
  915. }
  916. #interfaceAdaptiveViewsIconButton {
  917. display: block;
  918. }
  919. #interfaceAdaptiveViewsContainer {
  920. padding-left: 8px;
  921. }
  922. #scaleMenuContainer {
  923. right: 120px;
  924. }
  925. }
  926. @media (max-width: 700px) {
  927. #interfacePageNameContainer {
  928. display: none;
  929. }
  930. }