settings.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920
  1. /* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
  2. This file is licensed under the Affero General Public License version 3 or later.
  3. See the COPYING-README file. */
  4. select#languageinput, select#timezone { width:15em; }
  5. input#openid, input#webdav { width:20em; }
  6. /* PERSONAL */
  7. /* icons for sidebar */
  8. .nav-icon-personal-settings {
  9. background-image: url('../img/personal.svg?v=1');
  10. }
  11. .nav-icon-sessions {
  12. background-image: url('../img/toggle-filelist.svg?v=1');
  13. }
  14. .nav-icon-apppasswords {
  15. background-image: url('../img/password.svg?v=1');
  16. }
  17. .nav-icon-clientsbox {
  18. background-image: url('../img/change.svg?v=1');
  19. }
  20. .nav-icon-federated-cloud {
  21. background-image: url('../img/share.svg?v=1');
  22. }
  23. .nav-icon-second-factor-backup-codes {
  24. background-image: url('../img/password.svg?v=1');
  25. }
  26. #avatarform {
  27. width: 145px;
  28. padding-right: 0;
  29. }
  30. #avatarform .avatardiv {
  31. margin-bottom: 10px;
  32. }
  33. #avatarform .warning {
  34. width: 100%;
  35. }
  36. #displayavatar {
  37. text-align: center;
  38. }
  39. #displayavatar p {
  40. text-align: left;
  41. }
  42. #uploadavatarbutton,
  43. #selectavatar,
  44. #removeavatar {
  45. width: 33px;
  46. height: 33px;
  47. }
  48. .jcrop-holder {
  49. z-index: 500;
  50. }
  51. #cropper {
  52. float: left;
  53. z-index: 500;
  54. /* float cropper above settings page to prevent unexpected flowing from dynamically sized element */
  55. position: fixed;
  56. background-color: rgba(0, 0, 0, .2);
  57. box-sizing: border-box;
  58. top: 45px;
  59. left: 0;
  60. width: 100%;
  61. height: calc(100% - 45px);
  62. }
  63. #cropper .inner-container {
  64. z-index: 2001; /* above the top bar if needed */
  65. position: absolute;
  66. top: 50%;
  67. left: 50%;
  68. transform: translate(-50%, -50%);
  69. background: #fff;
  70. color: #333;
  71. border-radius: 3px;
  72. box-shadow: 0 0 7px #888;
  73. padding: 15px;
  74. }
  75. #cropper .inner-container .jcrop-holder {
  76. box-shadow: 0 0 7px #888;
  77. }
  78. #cropper .inner-container .button {
  79. margin-top: 15px;
  80. }
  81. #cropper .inner-container .primary {
  82. float: right;
  83. }
  84. #personal-settings-avatar-container {
  85. float: left;
  86. }
  87. #personal-settings-container {
  88. position: relative;
  89. float: left;
  90. min-width: 280px;
  91. max-width: 700px;
  92. width: calc(100% - 200px);
  93. }
  94. #personal-settings-container:after {
  95. clear: both;
  96. }
  97. #personal-settings-container > div {
  98. float: left;
  99. height: 100px;
  100. min-width: 300px;
  101. }
  102. #personal-settings-container.no-edit > div {
  103. height: 20px;
  104. min-width: 200px;
  105. }
  106. #avatarform > h2,
  107. #personal-settings-container > div h2 {
  108. position: relative;
  109. }
  110. #personal-settings-container > div h2 span[class^="icon-"],
  111. #personal-settings-avatar-container h2 span[class^="icon-"] {
  112. display: inline-block;
  113. padding: 8px;
  114. margin-left: -8px;
  115. margin-bottom: -10px;
  116. background-size: 16px;
  117. opacity: .3;
  118. cursor: pointer;
  119. }
  120. .personal-settings-setting-box input[type="text"],
  121. .personal-settings-setting-box input[type="email"],
  122. .personal-settings-setting-box input[type="tel"] {
  123. width: 17em;
  124. }
  125. #personal-settings-container > div > form span[class^="icon-checkmark"] {
  126. position: absolute;
  127. left: 228px;
  128. top: 82px;
  129. pointer-events: none;
  130. }
  131. .federationScopeMenu {
  132. top: 44px;
  133. margin: -5px 0px 0;
  134. }
  135. .federationScopeMenu.bubble::after {
  136. right: 50%;
  137. transform: translate(50%, 0);
  138. }
  139. .federationScopeMenu.popovermenu a.menuitem,
  140. .federationScopeMenu.popovermenu label.menuitem,
  141. .federationScopeMenu.popovermenu .menuitem {
  142. font-size: 12.8px;
  143. line-height: 1.6em;
  144. }
  145. .federationScopeMenu.popovermenu .menuitem .menuitem-text-detail {
  146. opacity: .75;
  147. }
  148. #lostpassword,
  149. #groups,
  150. #passwordform {
  151. display: inline-block;
  152. margin-bottom: 0;
  153. padding-bottom: 0;
  154. padding-right: 0;
  155. min-width: 60%;
  156. }
  157. #avatarform,
  158. #passwordform {
  159. margin-bottom: 0;
  160. padding-bottom: 0;
  161. }
  162. #groups {
  163. overflow-wrap: break-word;
  164. max-width: 75%;
  165. display: block;;
  166. clear: both;
  167. }
  168. .clientsbox img {
  169. height: 60px;
  170. }
  171. #sslCertificate tr.expired {
  172. background-color: rgba(255, 0, 0, 0.5);
  173. }
  174. #sslCertificate td {
  175. padding: 5px;
  176. }
  177. #displaynameerror {
  178. display: none;
  179. }
  180. #displaynamechanged {
  181. display: none;
  182. }
  183. input#identity {
  184. width: 20em;
  185. }
  186. #showWizard {
  187. display: inline-block;
  188. }
  189. .msg.success {
  190. color: #fff;
  191. background-color: #47a447;
  192. padding: 3px;
  193. }
  194. .msg.error {
  195. color: #fff;
  196. background-color: #d2322d;
  197. padding: 3px;
  198. }
  199. .password-state {
  200. display: inline-block;
  201. }
  202. table.nostyle label { margin-right: 2em; }
  203. table.nostyle td { padding: 0.2em 0; }
  204. #sessions table,
  205. #apppasswords table {
  206. width: 100%;
  207. min-height: 50px;
  208. padding-top: 5px;
  209. max-width: 580px;
  210. }
  211. #sessions table th,
  212. #apppasswords table th {
  213. opacity: .5;
  214. }
  215. #sessions table th,
  216. #sessions table td,
  217. #apppasswords table th,
  218. #apppasswords table td {
  219. padding: 10px 10px 10px 0;
  220. }
  221. #sessions .token-list td.more,
  222. #apppasswords .token-list td.more {
  223. overflow: visible;
  224. position: relative;
  225. width: 16px;
  226. }
  227. #sessions .token-list td,
  228. #apppasswords .token-list td {
  229. border-top: 1px solid #DDD;
  230. text-overflow: ellipsis;
  231. max-width: 200px;
  232. white-space: nowrap;
  233. overflow: hidden;
  234. vertical-align: top;
  235. position: relative;
  236. }
  237. #sessions tr>*:nth-child(2),
  238. #apppasswords tr>*:nth-child(2) {
  239. text-align: right;
  240. }
  241. #sessions .token-list td > a.icon,
  242. #apppasswords .token-list td > a.icon {
  243. opacity: 0;
  244. transition: opacity 0.5s;
  245. }
  246. #sessions .token-list a.icon,
  247. #apppasswords .token-list a.icon {
  248. margin-top: 4px;
  249. display: block;
  250. }
  251. #sessions .token-list tr:hover td > a.icon,
  252. #apppasswords .token-list tr:hover td > a.icon,
  253. #sessions .token-list tr.active td > a.icon,
  254. #apppasswords .token-list tr.active td > a.icon{
  255. opacity: 0.6;
  256. }
  257. #sessions .token-list td div.configure,
  258. #apppasswords .token-list td div.configure {
  259. display: none;
  260. }
  261. #sessions .token-list tr.active div.configure,
  262. #apppasswords .token-list tr.active div.configure {
  263. display: block;
  264. position: absolute;
  265. top: 45px;
  266. right: -5px;
  267. padding: 10px;
  268. }
  269. #sessions .token-list div.configure:after,
  270. #apppasswords .token-list div.configure:after {
  271. right: 13px;
  272. }
  273. #sessions .token-list tr.active div.configure > *,
  274. #apppasswords .token-list tr.active div.configure > *{
  275. margin-top: 5px;
  276. margin-bottom: 5px;
  277. display: inline-block;
  278. }
  279. #sessions .token-list tr.active a.icon-delete,
  280. #apppasswords .token-list tr.active a.icon-delete {
  281. background-position: left;
  282. padding-left: 20px;
  283. }
  284. #new-app-login-name,
  285. #new-app-password {
  286. width: 186px;
  287. font-family: monospace;
  288. background-color: lightyellow;
  289. }
  290. .app-password-row {
  291. display: table-row;
  292. }
  293. .app-password-row .icon {
  294. background-size: 16px 16px;
  295. display: inline-block;
  296. position: relative;
  297. top: 3px;
  298. margin-left: 5px;
  299. margin-right: 8px;
  300. }
  301. .app-password-label {
  302. display: table-cell;
  303. padding-right: 1em;
  304. }
  305. .social-button {
  306. padding-left: 0 !important;
  307. margin-left: -10px
  308. }
  309. .social-button img {
  310. padding: 10px;
  311. }
  312. /* USERS */
  313. #newgroup-init a span { margin-left: 20px; }
  314. #newgroup-init a span:before {
  315. position: absolute; left: 12px; top:-2px;
  316. content: '+'; font-weight: bold; font-size: 150%;
  317. }
  318. #newgroup-form {
  319. height: 44px;
  320. }
  321. #newgroupname {
  322. margin: 0;
  323. width: 100%;
  324. padding: 12px 40px 12px 12px;
  325. box-sizing: border-box;
  326. background-color: transparent;
  327. border: none;
  328. border-bottom: 1px solid #eee;
  329. border-radius: 0;
  330. }
  331. #newgroup-form .button {
  332. position: absolute;
  333. right: 0;
  334. top: 0;
  335. padding: 10px 20px;
  336. background-color: transparent;
  337. border: none;
  338. opacity: .5;
  339. }
  340. .isgroup .groupname {
  341. width: 85%;
  342. display: block;
  343. overflow: hidden;
  344. text-overflow: ellipsis;
  345. }
  346. .isgroup.active .groupname {
  347. width: 65%;
  348. }
  349. .usercount { float: left; margin: 5px; }
  350. li.active span.utils .delete {
  351. float: left; position: relative; opacity: 0.5;
  352. top: -7px; left: 7px; width: 44px; height: 44px;
  353. }
  354. li.active .rename {
  355. padding: 8px 14px 20px 14px;
  356. top: 0px; position: absolute; width: 16px; height: 16px;
  357. opacity: 0.5;
  358. display: inline-block !important;
  359. }
  360. li.active span.utils .delete img { margin: 14px; }
  361. li.active .rename { opacity: 0.5; }
  362. li.active span.utils .delete:hover, li.active .rename:hover { opacity: 1; }
  363. span.utils .delete, .rename { display: none; }
  364. #app-navigation ul li.active > span.utils .delete,
  365. #app-navigation ul li.active > span.utils .rename { display: block; }
  366. #usersearchform {
  367. position: absolute;
  368. top: 2px;
  369. right: 0;
  370. }
  371. #usersearchform input {
  372. width: 150px;
  373. }
  374. #usersearchform label { font-weight: 700; }
  375. /* display table at full width */
  376. table.grid {
  377. width: 100%;
  378. }
  379. table.grid th {
  380. height: 2em;
  381. color: #999;
  382. }
  383. table.grid th, table.grid td {
  384. border-bottom: 1px solid #eee;
  385. padding: 0 .5em;
  386. padding-left: .8em;
  387. text-align: left;
  388. font-weight: normal;
  389. }
  390. td.name, td.password { padding-left:.8em; }
  391. td.password>img,td.displayName>img, td.remove>a, td.quota>img { visibility:hidden; vertical-align: middle;}
  392. td.password, td.quota, td.displayName { width:12em; cursor:pointer; }
  393. td.password>span, td.quota>span, rd.displayName>span { margin-right: 1.2em; color: #C7C7C7; }
  394. span.usersLastLoginTooltip { white-space: nowrap; }
  395. /* dropdowns will be relative to this element */
  396. #userlist {
  397. position: relative;
  398. }
  399. #userlist .mailAddress,
  400. #userlist .storageLocation,
  401. #userlist .userBackend,
  402. #userlist .lastLogin {
  403. display : none;
  404. }
  405. /* because of accessibility the name cell is <th> - therefore we enforce the black color */
  406. #userlist th.name {
  407. color: #000;
  408. }
  409. /* use same height as in files app */
  410. #userlist tr {
  411. height: 51px;
  412. }
  413. #userlist .mailAddress .loading-small {
  414. width: 16px;
  415. height: 16px;
  416. margin-left: -26px;
  417. position: relative;
  418. top: 3px;
  419. }
  420. #newuser .groups {
  421. display: inline;
  422. }
  423. #newuser .groupsListContainer.hidden,
  424. #userlist .groupsListContainer.hidden {
  425. display: none;
  426. }
  427. tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:pointer; }
  428. tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; }
  429. td.remove {
  430. width: 25px;
  431. }
  432. tr:hover>td.remove>a {
  433. float: left;
  434. }
  435. div.recoveryPassword { left:50em; display:block; position:absolute; top:-1px; }
  436. input#recoveryPassword {width:15em;}
  437. #controls select.quota {
  438. margin: 3px;
  439. margin-right: 10px;
  440. height: 37px;
  441. }
  442. select.quota-user { position:relative; left:0; top:0; width:10em; }
  443. select.quota.active { background: #fff; }
  444. input.userFilter {width: 200px;}
  445. /* positioning fixes */
  446. #newuser {
  447. padding-left: 3px;
  448. }
  449. #newuser .multiselect {
  450. min-width: 150px !important;
  451. }
  452. #newuser .multiselect,
  453. #newusergroups + input[type='submit'] {
  454. position: relative;
  455. top: -1px;
  456. }
  457. #headerGroups,
  458. #headerSubAdmins,
  459. #headerQuota {
  460. padding-left: 18px;
  461. }
  462. #headerAvatar {
  463. width: 32px;
  464. }
  465. /* used to highlight a user row in red */
  466. #userlist tr.row-warning {
  467. background-color: #FDD;
  468. }
  469. /* APPS */
  470. #app-content > svg.app-filter {
  471. float: left;
  472. height: 0;
  473. width: 0;
  474. }
  475. .appinfo { margin: 1em 40px; }
  476. #app-navigation .appwarning {
  477. background: #fcc;
  478. }
  479. #app-navigation.appwarning:hover {
  480. background: #fbb;
  481. }
  482. span.version {
  483. margin-left: 1em;
  484. margin-right: 1em;
  485. color: #555;
  486. }
  487. #app-navigation .app-external,
  488. .app-version {
  489. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  490. filter: alpha(opacity=50);
  491. opacity: .5;
  492. }
  493. .app-level {
  494. margin-top: 8px;
  495. }
  496. .app-level span {
  497. color: #555;
  498. background-color: transparent;
  499. border: 1px solid #555;
  500. border-radius: 3px;
  501. padding: 3px 6px;
  502. }
  503. .app-level .official {
  504. border-color: #37ce02;
  505. background-position: left center;
  506. background-position: 5px center;
  507. padding-left: 25px;
  508. }
  509. .app-score {
  510. position: relative;
  511. top: 4px;
  512. }
  513. #apps-list {
  514. position: relative;
  515. height: 100%;
  516. display: flex;
  517. flex-wrap: wrap;
  518. align-content: flex-start;
  519. }
  520. #apps-list.hidden {
  521. display: none;
  522. }
  523. #apps-list .section {
  524. position: relative;
  525. flex: 0 0 auto;
  526. margin-left: 20px;
  527. }
  528. #apps-list .section.apps-experimental {
  529. flex-basis: 90%;
  530. }
  531. #apps-list .app-description p {
  532. margin: 10px 0;
  533. }
  534. #apps-list .app-description ul {
  535. list-style: disc;
  536. }
  537. #apps-list .app-description ol {
  538. list-style: decimal;
  539. }
  540. #apps-list .app-description > ul,
  541. #apps-list .app-description > ol {
  542. margin-left: 19px;
  543. }
  544. #apps-list .app-description ol ol,
  545. #apps-list .app-description ol ul,
  546. #apps-list .app-description ul ol,
  547. #apps-list .app-description ul ul {
  548. padding-left: 15px;
  549. }
  550. @media (min-width: 1601px) {
  551. #apps-list .section {
  552. width: 22%;
  553. box-sizing: border-box;
  554. }
  555. #apps-list .section:nth-child(4n) {
  556. margin-right: 20px;
  557. }
  558. }
  559. @media (min-width: 1201px) and (max-width: 1600px) {
  560. #apps-list .section {
  561. width: 30%;
  562. box-sizing: border-box;
  563. }
  564. #apps-list .section:nth-child(3n) {
  565. margin-right: 20px;
  566. }
  567. }
  568. @media (min-width: 901px) and (max-width: 1200px), (min-width: 601px) and (max-width: 770px) {
  569. #apps-list .section {
  570. width: 40%;
  571. box-sizing: border-box;
  572. }
  573. #apps-list .section:nth-child(2n) {
  574. margin-right: 20px;
  575. }
  576. }
  577. @media (max-width: 600px), (min-width: 771px) and (max-width: 900px) {
  578. #apps-list .section {
  579. width: 100%;
  580. box-sizing: border-box;
  581. }
  582. }
  583. .section h2.app-name {
  584. margin-bottom: 8px;
  585. display: inline;
  586. }
  587. form.section {
  588. position: relative;
  589. }
  590. .followupsection {
  591. display: block;
  592. padding: 0 30px 30px 30px;
  593. color: #555;
  594. margin-bottom: 24px;
  595. margin-top: -30px;
  596. position: relative;
  597. }
  598. .app-image {
  599. float: left;
  600. padding-right: 10px;
  601. width: 80px;
  602. height: 80px;
  603. opacity: 0.8;
  604. }
  605. .app-name,
  606. .app-version,
  607. .app-score,
  608. .app-level {
  609. display: inline-block;
  610. }
  611. .app-description-toggle-show,
  612. .app-description-toggle-hide {
  613. clear: both;
  614. padding: 7px 0;
  615. cursor: pointer;
  616. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  617. opacity: .5;
  618. }
  619. .app-description-container {
  620. clear: both;
  621. position: relative;
  622. top: 7px;
  623. }
  624. .app-description {
  625. clear: both;
  626. }
  627. #apps-list .groups-enable {
  628. margin-top: 8px;
  629. }
  630. #app-category-1 {
  631. margin-bottom: 18px;
  632. }
  633. /* capitalize "Other" category */
  634. #app-category-925 {
  635. text-transform: capitalize;
  636. }
  637. .app-dependencies {
  638. color: #ce3702;
  639. }
  640. .missing-dependencies {
  641. list-style: initial;
  642. list-style-type: initial;
  643. list-style-position: inside;
  644. }
  645. /* Transition to complete width! */
  646. .app:hover, .app:active { max-width: inherit; }
  647. .appslink { text-decoration: underline; }
  648. .score { color:#666; font-weight:bold; font-size:0.8em; }
  649. .appinfo .documentation {
  650. margin-top: 1em;
  651. margin-bottom: 1em;
  652. }
  653. /* LOG */
  654. #log {
  655. white-space:normal;
  656. margin-bottom: 14px;
  657. }
  658. #lessLog { display:none; }
  659. table.grid td.date{
  660. white-space: nowrap;
  661. }
  662. #log-section p {
  663. margin-top:20px;
  664. }
  665. /* ADMIN */
  666. /* Navigation icons */
  667. #app-navigation img {
  668. margin-bottom: -3px;
  669. margin-right: 6px;
  670. width: 16px;
  671. }
  672. #app-navigation li span.no-icon {
  673. padding-left: 32px;
  674. }
  675. #security-warning li {
  676. list-style: initial;
  677. margin: 10px 0;
  678. }
  679. #security-warning-state span {
  680. padding-left: 25px;
  681. background-position: 5px center;
  682. margin-left: -5px;
  683. }
  684. #shareAPI p { padding-bottom: 0.8em; }
  685. #shareAPI input#shareapiExpireAfterNDays {width: 25px;}
  686. #shareAPI .indent {
  687. padding-left: 28px;
  688. }
  689. #shareAPI .double-indent {
  690. padding-left: 56px;
  691. }
  692. #fileSharingSettings h3 {
  693. display: inline-block;
  694. }
  695. #publicShareDisclaimerText {
  696. width: calc(100% - 23px); /* 20 px left margin, 3 px right margin */
  697. max-width: 600px;
  698. height: 150px;
  699. margin-left: 20px;
  700. box-sizing: border-box;
  701. }
  702. /* correctly display help icons next to headings */
  703. .icon-info {
  704. padding: 11px 20px;
  705. vertical-align: text-bottom;
  706. }
  707. #shareAPI h2,
  708. #encryptionAPI h2,
  709. #mail_general_settings h2 {
  710. display: inline-block;
  711. }
  712. #encryptionAPI li {
  713. list-style-type: initial;
  714. margin-left: 20px;
  715. padding: 5px 0;
  716. }
  717. .mail_settings p label:first-child {
  718. display: inline-block;
  719. width: 300px;
  720. text-align: right;
  721. }
  722. .mail_settings p select:nth-child(2) {
  723. width: 143px;
  724. }
  725. #mail_smtpport {
  726. width: 40px;
  727. }
  728. .cronlog {
  729. margin-left: 10px;
  730. }
  731. .status {
  732. display: inline-block;
  733. height: 16px;
  734. width: 16px;
  735. vertical-align: text-bottom;
  736. }
  737. .status.success {
  738. border-radius: 50%;
  739. }
  740. #selectGroups select {
  741. -moz-box-sizing: border-box;
  742. -webkit-box-sizing: border-box;
  743. box-sizing: border-box;
  744. display: inline-block;
  745. height: 36px;
  746. padding: 7px 10px
  747. }
  748. #log .log-message {
  749. word-break: break-all;
  750. min-width: 180px;
  751. }
  752. span.success {
  753. background: #37ce02;
  754. border-radius: 3px;
  755. }
  756. span.error {
  757. background: #ce3702;
  758. }
  759. span.indeterminate {
  760. background: #e6db00;
  761. border-radius: 40% 0;
  762. }
  763. /* PASSWORD */
  764. #passwordform .strengthify-wrapper {
  765. position: absolute;
  766. left: 0;
  767. width: 130px;
  768. margin-top: -6px;
  769. }
  770. /* OPERA hack for strengthify*/
  771. doesnotexist:-o-prefocus, .strengthify-wrapper {
  772. left: 185px;
  773. width: 129px;
  774. }
  775. .trusted-domain-warning {
  776. color: #fff;
  777. padding: 5px;
  778. background: #ce3702;
  779. border-radius: 5px;
  780. font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  781. }
  782. /* HELP */
  783. .help-includes {
  784. overflow: hidden !important;
  785. }
  786. .help-iframe {
  787. width: 100%;
  788. height: 100%;
  789. margin: 0;
  790. padding: 0;
  791. border: 0;
  792. overflow: auto;
  793. }
  794. #postsetupchecks .loading {
  795. height: 50px;
  796. background-position: left center;
  797. }
  798. #postsetupchecks .errors,
  799. #postsetupchecks .warnings,
  800. #security-warning > ul {
  801. color: #ce3702;
  802. }
  803. #admin-tips li {
  804. list-style: initial;
  805. }
  806. #admin-tips li a {
  807. display: inline-block;
  808. padding: 3px 0;
  809. }
  810. #selectEncryptionModules {
  811. margin-left: 30px;
  812. padding: 10px;
  813. }
  814. #encryptionModules {
  815. padding: 10px;
  816. }
  817. #warning {
  818. color: red;
  819. }