boardColors.styl 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004
  1. // We define a set of six board colors that we took from the FlatUI palette.
  2. // http://flatuicolors.com
  3. //
  4. // XXX Centralizing all these properties in a single file just because their
  5. // value is derived from the same color, doesn't make any sense. We should
  6. // create a mixin/macro that would generate 6 versions of a given property and
  7. // dispatch this list in the other stylus files.
  8. setBoardColor(color)
  9. &#header,
  10. &.sk-spinner div,
  11. .board-backgrounds-list &.background-box,
  12. .board-list & a
  13. background-color: color
  14. .is-selected .minicard
  15. border-left: 3px solid color
  16. button[type=submit].primary, input[type=submit].primary
  17. background-color: darken(color, 20%)
  18. &.pop-over .pop-over-list li a:not(.disabled):hover,
  19. .sidebar .sidebar-content .sidebar-btn:hover,
  20. .sidebar-list li a:hover
  21. background-color: lighten(color, 10%)
  22. &#header ul li.current, &#header-quick-access ul li.current
  23. border-bottom: 2px solid lighten(color, 10%)
  24. &#header-quick-access
  25. background: darken(color, 10%)
  26. color: white
  27. &#header #header-main-bar .board-header-btn.emphasis
  28. background: complement(color)
  29. &:hover,
  30. .board-header-btn-close
  31. background: darken(complement(color), 10%)
  32. &:hover .board-header-btn-close
  33. background: darken(complement(color), 20%)
  34. .materialCheckBox.is-checked
  35. border-bottom: 2px solid color
  36. border-right: 2px solid color
  37. .is-multiselection-active .multi-selection-checkbox
  38. &.is-checked + .minicard
  39. background: lighten(color, 90%)
  40. &:not(.is-checked) + .minicard:hover:not(.minicard-composer)
  41. background: lighten(color, 97%)
  42. .toggle-label
  43. &:after
  44. background-color: darken(color, 20%)
  45. .toggle-switch:checked ~ .toggle-label
  46. background-color: lighten(color, 20%)
  47. &:after
  48. background-color: darken(color, 20%)
  49. @media screen and (max-width: 800px)
  50. &.pop-over .header
  51. background: color
  52. color: white
  53. &#header ul li.current, &#header-quick-access ul li.current
  54. border-bottom: 4px solid lighten(color, 20%)
  55. .board-color-nephritis
  56. setBoardColor(#27AE60)
  57. .board-color-pomegranate
  58. setBoardColor(#C0392B)
  59. .board-color-belize
  60. setBoardColor(#2980B9)
  61. .board-color-wisteria
  62. setBoardColor(#8E44AD)
  63. .board-color-midnight
  64. setBoardColor(#2C3E50)
  65. .board-color-pumpkin
  66. setBoardColor(#E67E22)
  67. .board-color-moderatepink
  68. setBoardColor(#CD5A91)
  69. .board-color-strongcyan
  70. setBoardColor(#00AECC)
  71. .board-color-limegreen
  72. setBoardColor(#4BBF6B)
  73. .board-color-dark
  74. setBoardColor(#2C3E51)
  75. /* Not hidden in dark mode.
  76. card fields: received, start, due, end, members, requested, assigned
  77. .card-details-item.card-details-item-received,
  78. .card-details-item.card-details-item-start,
  79. .card-details-item.card-details-item-due,
  80. .card-details-item.card-details-item-end,
  81. .card-details-item.card-details-item-members,
  82. .card-details-item.card-details-item-name { display:none; }
  83. .card-details-items:empty { display:none; }
  84. */
  85. // DARK MODE, when dark background mode selected.
  86. // Modified version from https://github.com/wekan/wekan/wiki/Custom-CSS-themes#dark-theme
  87. // In progress, please send pull requests to fix remaining visibility issues.
  88. .ui-sortable,
  89. .swimlane,
  90. .swimlane >.swimlane-header-wrap,
  91. .swimlane >.list.js-list,
  92. .swimlane >.list-composer.js-list-composer,
  93. .list-body,
  94. .list,
  95. .list-composer,
  96. .sidebar-content,
  97. .card-details
  98. background-color:#2C3E50
  99. .card-details h3,
  100. .card-details-items,
  101. .card-checklist-items .ui-sortable,
  102. .card-subtasks-items,
  103. .activities,
  104. .material-toggle-switch
  105. color:#bbbbbb
  106. .list-header
  107. background-color: #888888
  108. .board-widget,
  109. .board-widget-labels,
  110. .board-widget-members
  111. color: #aaaaaa
  112. /* popup menu titles (boards, swimlanes, lists, cards, labels) */
  113. .pop-over >.header
  114. display:none;
  115. /* HIDE UNTIL HOVER -------------------------------------------------- */
  116. /* header "+" button */
  117. #header-quick-access .fa-plus
  118. display:none
  119. #header-quick-access:hover .fa-plus
  120. display:inherit
  121. /* "add card" links (use visibility rather than display so items don't jump) */
  122. .open-minicard-composer
  123. visibility:hidden
  124. .list.js-list:hover .open-minicard-composer
  125. visibility:visible
  126. .list-header-menu
  127. visibility:hidden
  128. .list.js-list:hover .list-header-menu
  129. visibility:visible
  130. /* "add list/swimlane" links (use visibility rather than display so items don't jump) */
  131. .list.js-list-composer >.list-header
  132. visibility:hidden
  133. .list.js-list-composer:hover >.list-header
  134. visibility:visible
  135. /* headers */
  136. #header-quick-access, #header
  137. background-color:rgba(0,0,0,.75) !important
  138. #header .board-header-btn:hover
  139. background-color:rgba(255,255,255,0.3) !important
  140. /* foregrounds: swimlanes, lists */
  141. .list >.list-header, .swimlane-header
  142. color:rgba(255,255,255,.7)
  143. /* minicards */
  144. .minicard
  145. background-color:rgba(255,255,255,.4)
  146. .minicard-wrapper.is-selected .minicard,
  147. .minicard:hover,
  148. .minicard-composer.js-composer,
  149. .open-minicard-composer:hover
  150. background-color:rgba(255,255,255,.8) !important
  151. color:#000
  152. .minicard, .minicard .badge
  153. color:#fff
  154. .minicard:hover .badge, .minicard-wrapper.is-selected .badge
  155. color:#000
  156. /* cards */
  157. .card-details .card-details-header
  158. background-color:#ccc
  159. /* sidebar */
  160. .sidebar-tongue, .sidebar-shadow
  161. background-color:#666 !important
  162. .sidebar-content h3, .sidebar-content h2, .sidebar-content
  163. color:rgba(255,255,255,.7) !important
  164. .board-color-relax
  165. setBoardColor(#27AE61)
  166. // RELAX MODE: light green background, with green background color,
  167. // to help this theme users to relax.
  168. // Colors and emphasis are specific to this Wekan theme contributor's company.
  169. .ui-sortable
  170. background-color:#a7e366
  171. .list-header
  172. background-color:#a7e366
  173. border-bottom: 6px solid #a7e366
  174. .list-body
  175. background-color:#a7e366
  176. .list
  177. border-left: 1px dotted #000000
  178. // Card details text emphasis: black border and white background
  179. // to make it details text field easier to find for RELAX MODE users,
  180. // and focus attention.
  181. .card-details .card-details-items
  182. & ~ .js-open-inlined-form
  183. .viewer
  184. background-color #ffffff !important
  185. padding 15px !important
  186. border 1px solid #000000 !important
  187. word-wrap: break-word
  188. // When card has comment, emphasis on minicard:
  189. // bigger red comment icon and number of comments,
  190. // to make it easier notice card comments and focus attention.
  191. .minicard .badges .badge
  192. .badge-icon,
  193. .badge-text
  194. &.badge-comment
  195. display: block
  196. border-radius: 4px
  197. padding: 1px 3px
  198. margin-bottom: 0.3rem
  199. color: #ff0000
  200. background-color: #ffffff
  201. font-weight: bold
  202. font-size: 11pt
  203. .board-color-corteza
  204. setBoardColor(#568BA2)
  205. /*
  206. Wekan for Corteza https://cortezaproject.org
  207. Theme to match Corteza colors from:
  208. https://github.com/cortezaproject/corteza-webapp-messaging/blob/master/src/assets/sass/variables.scss
  209. // Paths
  210. $fonts_dir : './assets/fonts/';
  211. $icomoon-font-path: $fonts_dir + 'icomoon' !default;
  212. $icomoon-font-family: "icomoon" !default;
  213. // Typography
  214. $regular: 'nunito_sansregular';
  215. $bold: 'nunito_sansbold';
  216. $semibold: 'nunito_sanssemibold';
  217. // Color system
  218. $white: #fff !default;
  219. $black: #000 !default;
  220. $primary: #568ba2;
  221. $secondary: #90A3B1;
  222. $success: #719430;
  223. $warning: #F5D380;
  224. $danger: #E85568;
  225. $light: #F3F3F5;
  226. $dark: #1e2224;
  227. $currentmymessagebgcolor : #a7d0e3;
  228. */
  229. //.header-quick-access
  230. // backgroud-color: #568ba2
  231. /*
  232. Alternate "Clear" Styling
  233. */
  234. setBoardClear(color1,color2)
  235. //color1: The quick access color
  236. //color2: The main bar color
  237. &.sk-spinner div,
  238. .board-backgrounds-list &.background-box,
  239. .board-list & a
  240. background: linear-gradient(180deg, color1 0%, color2 100%)
  241. //background: linear-gradient(180deg, rgb(73, 155, 234) 0%, rgb(0, 174, 204) 100%)
  242. .is-selected .minicard
  243. border-left: 3px solid color1
  244. &.pop-over .pop-over-list li a:not(.disabled):hover,
  245. .sidebar .sidebar-content .sidebar-btn:hover,
  246. .sidebar-list li a:hover
  247. background-color: lighten(color1, 10%)
  248. &#header ul li.current, &#header-quick-access ul li.current
  249. border-bottom: 4px solid lighten(color2, 10%)
  250. &#header-quick-access
  251. background: darken(color1, 10%)
  252. //background: rgba(66,137,204,1)
  253. color: #FFF
  254. &#header-quick-access #header-new-board-icon,
  255. &#header-quick-access #header-user-bar,
  256. &#header-quick-access ul li
  257. color: rgba(255,255,255,0.5)
  258. // The background-color value here is not seen,
  259. // its covered by the background of #header-main-bar
  260. // it's just to aid transitions between boards
  261. &#header
  262. background-color: color2
  263. border-bottom: 1px solid darken(color2, 20%)
  264. border-top: 1px solid darken(color2, 40%)
  265. // Since the theme uses a gradient for the header
  266. // and gradients break transitions, it has to be set here
  267. &#header #header-main-bar
  268. background: linear-gradient(180deg, color1 0%, color2 100%)
  269. &#header #header-main-bar p
  270. margin-bottom: 6px
  271. &#header #header-main-bar .board-header-btn.emphasis
  272. background: lighten(color2, 10%)
  273. &:hover,
  274. .board-header-btn-close
  275. background: rgba(0,0,0,0.2)
  276. &:hover .board-header-btn-close
  277. background: rgba(0,0,0,0.2)
  278. .materialCheckBox.is-checked
  279. border-bottom: 2px solid color1
  280. border-right: 2px solid color1
  281. .is-multiselection-active .multi-selection-checkbox
  282. &.is-checked + .minicard
  283. background: lighten(color2, 90%)
  284. &:not(.is-checked) + .minicard:hover:not(.minicard-composer)
  285. background: lighten(color2, 97%)
  286. .toggle-switch:checked ~ .toggle-label
  287. background-color: lighten(color1, 20%)
  288. &:after
  289. background-color: darken(color1, 20%)
  290. .board-canvas
  291. background: linear-gradient(135deg, color1 0%, color2 100%)
  292. .swimlane
  293. background: none
  294. .list:first-child
  295. margin-left: 15px
  296. .list
  297. background: rgba(255,255,255,0.35)
  298. margin: 10px
  299. border: 0
  300. border-radius: 14px
  301. .list.list-composer
  302. background: rgba(255,255,255,0.1)
  303. height: min-content
  304. flex: unset
  305. width: 270px
  306. padding-bottom: 16px
  307. .list.list-composer .open-list-composer
  308. border-radius: 7px
  309. color: rgba(0,0,0,0.3)
  310. padding: 7px 10px
  311. display: block
  312. .list.list-composer .open-list-composer:hover
  313. box-shadow: 0 1px 2px rgba(0,0,0,.2)
  314. background: rgba(255,255,255,0.7)
  315. color: rgba(0,0,0,0.6)
  316. .list-header
  317. background-color: rgba(255,255,255,0.25)
  318. border-radius: 14px 14px 0 0
  319. .list-header:not([class*="list-header-"])
  320. border-bottom: 6px solid rgba(255,255,255,0)
  321. .list-header .list-header-name
  322. color: rgba(0,0,0,0.6)
  323. .list-body
  324. padding: 11px
  325. .minicard
  326. border-radius: 7px
  327. padding: 10px 10px 4px 10px
  328. box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.15)
  329. color: #222
  330. .card-details
  331. border-radius: 0 0 14px 14px
  332. box-shadow: 0 0 7px 0 rgba(0,0,0,0.5)
  333. margin-left: -10px
  334. .list-body .open-minicard-composer
  335. border-radius: 7px
  336. color: rgba(0,0,0,.3)
  337. margin-bottom: 11px
  338. .list-body .open-minicard-composer:hover
  339. background: rgba(255,255,255,0.7)
  340. color: rgba(0,0,0,0.6)
  341. button[type=submit].primary, input[type=submit].primary
  342. box-shadow: none
  343. background-color: rgba(255,255,255,0.5)
  344. color: rgba(0,0,0,0.55)
  345. border-radius: 7px
  346. border: 0
  347. button[type="submit"].primary:hover, input[type="submit"].primary:hover
  348. background-color: rgba(255,255,255,0.7)
  349. color: rgba(0,0,0,0.8)
  350. box-shadow: 0 1px 2px rgba(0,0,0,.2)
  351. .quiet, .quiet a
  352. color: rgba(0,0,0,0.4)
  353. .list-header .list-header-watch-icon
  354. color: rgba(0,0,0,0.5)
  355. position: absolute
  356. margin-top: -34px
  357. margin-let: -11px
  358. a.fa, a i.fa
  359. color: rgba(0,0,0,0.3)
  360. a:not(.disabled).is-active.fa, a:not(.disabled).is-active i.fa, a:not(.disabled):hover.fa, a:not(.disabled):hover i.fa
  361. color: rgba(0,0,0,0.6)
  362. input[type="email"], input[type="password"], input[type="text"]
  363. border: 0
  364. border-radius: 7px
  365. .sidebar-shadow
  366. box-shadow: none
  367. border-left: 9px solid color2
  368. .is-open .sidebar-shadow
  369. box-shadow: -10px 0 8px rgba(0,0,0,0.3)
  370. .list.ui-sortable-helper
  371. transform:rotate(0deg)
  372. .minicard-wrapper.placeholder
  373. background: rgba(0,0,0,0.1)
  374. .minicard-wrapper.ui-sortable-helper
  375. transform:rotate(0deg)
  376. opacity: 0.8
  377. .list-body .open-minicard-composer
  378. color: rgba(0,0,0,.3)
  379. .swinlane.ui-sortable-helper
  380. transform:rotate(0deg)
  381. .swimlane .swimlane-header-wrap
  382. background: linear-gradient(0deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.25) 100%)
  383. .swimlane-header-wrap .inlined-form
  384. width: 100%
  385. .swimlane-header-wrap .list-composer
  386. text-align: center
  387. margin: 5px
  388. .swimlane-header-wrap .list-name-input.full-line
  389. margin: 0
  390. display: inline-block
  391. width: 270px
  392. .swimlane-header-wrap .edit-controls
  393. display: inline-block
  394. vertical-align: middle
  395. .swimlane-header-wrap .primary.confirm
  396. margin-right: 0
  397. .swimlane-header-wrap .fa.fa-times-thin
  398. margin-top: 2px
  399. // This is a general fix so that the little grabby hand appears when dragging the list via the title
  400. .list.ui-sortable-helper,
  401. .list.ui-sortable-helper .list-header.ui-sortable-handle,
  402. .list.ui-sortable-helper .viewer
  403. cursor:-webkit-grabbing;
  404. cursor:grabbing
  405. .board-color-clearblue
  406. setBoardClear(rgb(73, 155, 234),rgb(0, 174, 204))
  407. /*
  408. Alternate "Natural" Styling
  409. */
  410. .board-color-natural
  411. setBoardColor(#596557)
  412. &#header-quick-access
  413. background-color: #2d392b
  414. .ui-sortable
  415. background-color:#dedede
  416. .list-header
  417. background-color: #c9cfc3
  418. border-bottom: 6px solid #c9cfc3
  419. .swimlane .swimlane-header-wrap
  420. background-color: #c2c0ab
  421. /*
  422. Alternate "Modern" Styling
  423. */
  424. .board-color-modern
  425. setBoardColor(#2A80B8)
  426. /* General */
  427. body
  428. background: #f5f5f5
  429. &#header-quick-access
  430. padding: 10px
  431. font-size: 14px
  432. background: #333 !important
  433. &#header-quick-access ul
  434. overflow: visible
  435. &#header-quick-access ul li.current
  436. border: 0 !important
  437. font-weight: bold
  438. &#header-quick-access ul li.separator
  439. display: none
  440. &#header-quick-access ul li:nth-child(3)
  441. margin-right: 10px
  442. &#header-quick-access ul li a
  443. padding: 5px 10px
  444. border-radius: 2px
  445. &#header-quick-access ul li.current a
  446. border-radius: 2px
  447. background: rgba(255,255,255,.2)
  448. &#header #header-main-bar h1
  449. font-family: Poppins
  450. font-weight: bold
  451. &#header-quick-access #header-user-bar
  452. position relative
  453. &#header-quick-access #header-user-bar .header-user-bar-name
  454. margin: 5px 3px 0 0
  455. section#notifications-drawer
  456. top: 46px
  457. box-shadow: 0 4px 20px rgba(0,0,0,.1)
  458. max-width: 100%
  459. section#notifications-drawer .header
  460. top: 46px
  461. border-radius: 0 3px
  462. height: 21px
  463. background: #f7f7f7
  464. .board-canvas
  465. background: #f5f5f5
  466. /* Swimlane */
  467. .swimlane
  468. background: none
  469. .swimlane .swimlane-header-wrap .swimlane-header
  470. font-family: Poppins
  471. /* All board views */
  472. .board-list .board-list-item
  473. padding: 20px
  474. .board-list-item-name
  475. font-family: Poppins
  476. /* Board */
  477. .list
  478. background: transparent
  479. border-left: 0
  480. margin: 10px 0
  481. padding: 0px
  482. border-radius: 5px
  483. min-width: 300px
  484. .list-body .open-minicard-composer:hover /*me*/
  485. background: none
  486. box-shadow: none
  487. .list:first-child
  488. margin-left: 5px
  489. .list.list-composer.js-list-composer
  490. transition: all .3s ease
  491. min-width: 80px
  492. .open-list-composer.js-open-inlined-form:hover
  493. color: #222
  494. .list-header
  495. background: none
  496. border-bottom-width: 0px
  497. .list-header .list-header-name
  498. font-family: Poppins
  499. color: #000
  500. font-weight: 500
  501. /* Card changes */
  502. .minicard
  503. background: #FFF
  504. padding: 15px 15px 10px
  505. box-shadow: 0 3px 8px rgba(0,0,0,.05)
  506. .minicard-plum:hover:not(.minicard-composer), .is-selected .minicard-plum, .draggable-hover-card .minicard-plum
  507. background: none
  508. .minicard-title
  509. line-height: 1.5em
  510. .minicard .minicard-cover
  511. background-size: cover
  512. margin: -15px -15px 10px
  513. height: 100px
  514. .card-label-orange
  515. color: #fff
  516. .card-date
  517. font-size: 12px
  518. padding: 3px 5px
  519. /* Pop over */
  520. .header-title
  521. font-family: Poppins
  522. font-size: 16px
  523. color: #333
  524. .pop-over
  525. box-shadow: 0 4px 20px rgba(0,0,0,.2)
  526. border: 0
  527. border-radius: 5px
  528. .pop-over .header
  529. padding: 10px
  530. border-bottom: 0
  531. border-radius: 5px 5px 0 0
  532. background:#eee
  533. .pop-over .header .header-title
  534. font-family: Poppins
  535. font-size:16px
  536. color:#333
  537. .pop-over .header .close-btn
  538. font-size:20px
  539. top:6px
  540. right:8px
  541. .pop-over .content-container .content
  542. padding: 5px 20px 20px
  543. width: 260px
  544. .pop-over-list li > a
  545. border-radius: 5px
  546. .pop-over-list li > a > i
  547. margin-right: 5px
  548. .pop-over-list li>a .sub-name
  549. margin-bottom: 8px
  550. /* Sidebar */
  551. .sidebar .sidebar-shadow
  552. box-shadow: 0 0 60px rgba(0,0,0,.2)
  553. .sidebar .sidebar-content
  554. padding: 30px
  555. /* Notifications */
  556. .board-color-modern section#notifications-drawer
  557. border-radius:5px
  558. .board-color-modern section#notifications-drawer .header
  559. padding: 18px 16px
  560. border-bottom: 0
  561. border-radius: 5px 5px 0 0
  562. background: #eee
  563. .board-color-modern section#notifications-drawer .header h5
  564. font-family: Poppins
  565. font-weight: bold
  566. .board-color-modern section#notifications-drawer .header .close
  567. font-size: 20px
  568. top: 14px
  569. section#notifications-drawer .header .toggle-read
  570. top: 18px
  571. /*
  572. Alternate "Modern Dark" Styling
  573. */
  574. .board-color-moderndark
  575. setBoardColor(#2a2a2a)
  576. /* General */
  577. body
  578. background: #2a2a2a
  579. /* Forms */
  580. button[type=submit].primary, .board-color-modern input[type=submit].primary
  581. background-color: #819C5D
  582. .toggle-switch:checked~.toggle-label
  583. background-color: #D2E9B4
  584. .toggle-label:after, .board-color-modern .toggle-switch:checked~.toggle-label:after
  585. background-color: #819C5D !important
  586. /* Headers */
  587. &#header-quick-access, .background-box, #header
  588. background-color: #333333
  589. &#header-quick-access
  590. padding: 4px
  591. font-size: 14px
  592. &#header #header-main-bar
  593. height: 30px
  594. padding-top: 3px
  595. padding-bottom: 3px
  596. &#header
  597. box-shadow: 0 6px 6px -6px rgba(0,0,0,0.8)
  598. &#header-quick-access ul
  599. overflow: visible
  600. &#header-quick-access ul li.current
  601. border: 0 !important
  602. font-weight: bold
  603. &#header-quick-access ul li.separator
  604. display: none
  605. &#header-quick-access ul li:nth-child(3)
  606. margin-right: 10px
  607. &#header-quick-access ul li a
  608. padding: 5px 10px
  609. border-radius: 2px
  610. &#header-quick-access ul li.current a
  611. border-radius: 2px
  612. background: rgba(255,255,255,.2)
  613. &#header #header-main-bar h1
  614. font-family: Poppins
  615. font-weight: bold
  616. line-height: 0.8em
  617. padding-top: 10px
  618. /* Content */
  619. .board-canvas
  620. background: #2a2a2a
  621. padding: 10px 10px 0
  622. /* Swimlanes */
  623. .swimlane .swimlane-header-wrap
  624. background-color: #666666
  625. color: #cccccc
  626. padding: 4px 0
  627. margin-bottom: 10px
  628. .swimlane .swimlane-header-wrap .swimlane-header
  629. font-family: Poppins
  630. .swimlane
  631. background: #2a2a2a
  632. line-height: 15px
  633. max-height: 100%
  634. /* Lists */
  635. .swimlane .list
  636. background: #666666
  637. border-radius: 0
  638. border: 0px solid #666666
  639. .swimlane .list:nth-child(even)
  640. background: #5f5f5f
  641. .list-header
  642. background: #333333
  643. padding-top: 10px
  644. border-bottom: 6px solid #333333
  645. .list-header .viewer
  646. padding-left: 10px
  647. .list-header .list-header-name
  648. line-height: 14px
  649. color: #eeeeee
  650. .list-header .list-header-menu
  651. padding-top: 17px
  652. .list-body
  653. scrollbar-width: thin
  654. scrollbar-color: #343434 #999999
  655. .list-body::-webkit-scrollbar
  656. width: 10px
  657. .list-body::-webkit-scrollbar-track
  658. background: #343434
  659. border-radius: 3px
  660. margin: 4px 0
  661. .list-body::-webkit-scrollbar-thumb
  662. background-color: #999999
  663. border-radius: 6px
  664. border: 3px solid #343434
  665. .list-body .open-minicard-composer:hover
  666. background: none
  667. box-shadow: none
  668. border-bottom: 0
  669. .list-body a.open-minicard-composer, .list-body a.open-minicard-composer i
  670. color: #bbbbbb
  671. .list-body a.open-minicard-composer:hover, .list-body a.open-minicard-composer:hover i
  672. color: #ffffff
  673. /* Mini Card */
  674. .minicard
  675. background-color: #444444
  676. color: #cccccc
  677. border-radius: 2px
  678. font-size: 0.9em
  679. padding: 10px
  680. box-shadow: 0 4px 3px -3px rgba(0,0,0,0.8)
  681. border-bottom: 1px solid #666666
  682. .minicard:hover
  683. background-color: #555555 !important
  684. .card-label
  685. font-size: 11px
  686. font-weight: 400
  687. padding: 2px 6px 0
  688. .minicard .badges
  689. color: #bbbbbb
  690. .minicard .date
  691. margin-top: 7px
  692. font-size: 11px
  693. .card-date.almost-due
  694. color: #666666
  695. .minicard.minicard-composer textarea.minicard-composer-textarea:focus
  696. background-color: #eeeeee
  697. color: #333333
  698. padding: 6px
  699. .is-selected .minicard
  700. background-color: #666666
  701. /* Card Details */
  702. .card-details
  703. background-color: #454545
  704. color: #cccccc
  705. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
  706. border: 1px solid #111111
  707. .card-details
  708. scrollbar-width: thin
  709. scrollbar-color: #343434 #999999
  710. .card-details::-webkit-scrollbar
  711. width: 16px
  712. .card-details::-webkit-scrollbar-track
  713. background: #343434
  714. .card-details::-webkit-scrollbar-thumb
  715. background-color: #999999
  716. border-radius: 6px
  717. border: 4px solid #343434
  718. .card-details .card-details-header
  719. background: #333333
  720. color: #cccccc
  721. border-bottom: 2px solid #2d2d2d
  722. .card-details hr
  723. background: #2d2d2d
  724. .card-details .card-details-item-title
  725. color: #ffffff
  726. .card-details .new-description textarea, .card-details .new-comment textarea
  727. background-color: #dddddd
  728. color: #111111
  729. .card-details .checklist
  730. background-color: transparent
  731. .card-details .checklist-item
  732. background-color: rgba(255,255,255,0.1)
  733. padding: 2px 8px
  734. border-radius: 3px
  735. .card-details .check-box.materialCheckBox
  736. border-color: #ffffff
  737. .card-details .check-box.materialCheckBox.is-checked
  738. border-bottom: 2px solid #819C5D
  739. border-right: 2px solid #819C5D
  740. border-top: 0
  741. border-left: 0
  742. .card-details .js-add-checklist-item
  743. margin-top: 4px
  744. .card-details .activities .activity .activity-desc .activity-comment
  745. background-color: rgba(255,255,255,0.1)
  746. /* Sidebar */
  747. .sidebar .sidebar-shadow
  748. background-color: #222222
  749. box-shadow: -10px 0 5px -10px #444444
  750. border-left: 1px solid #333333
  751. color: #cccccc
  752. .activities .activity .activity-desc .activity-comment
  753. background-color: #cccccc
  754. color: #222222
  755. /* Pop-Ups for "Modern Dark" */
  756. .pop-over.board-color-moderndark
  757. background-color: #454545
  758. color: #cccccc
  759. border: 1px solid #111111
  760. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
  761. .pop-over.board-color-moderndark .header
  762. background-color: #333333
  763. .pop-over.board-color-moderndark .header-title
  764. font-family: Poppins
  765. font-size: 16px
  766. color: #cccccc
  767. .pop-over.board-color-moderndark .pop-over-list li:hover > a
  768. background-color: #819C5D !important