boardColors.styl 24 KB

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