cryptpad/www/kanban/app-kanban.less

396 lines
10 KiB
Text
Raw Normal View History

@import (reference) "../../customize/src/less2/include/browser.less";
@import (reference) "../../customize/src/less2/include/framework.less";
@import (reference) "../../customize/src/less2/include/tools.less";
2020-03-04 16:48:20 +00:00
@import (reference) "../../customize/src/less2/include/markdown.less";
2018-04-01 16:52:21 +00:00
// body
&.cp-app-kanban {
2018-07-14 13:15:23 +00:00
.framework_main(
@bg-color: @colortheme_kanban-bg,
@warn-color: @colortheme_kanban-warn,
@color: @colortheme_kanban-color
);
2018-04-01 16:52:21 +00:00
display: flex;
flex-flow: column;
2018-04-01 16:52:21 +00:00
max-height: 100%;
min-height: auto;
2020-03-04 14:34:36 +00:00
color: @cryptpad_text_col;
2020-03-04 16:48:20 +00:00
@board-bg: #eaeaea;
2020-03-04 11:56:47 +00:00
@palette0: #888; // Default bg color for header
2020-03-03 15:20:45 +00:00
@palette1: #FFD4D4;
@palette2: #FFDECA;
@palette3: #FFE69C;
@palette4: #DBFFB7;
@palette5: #AFFDC2;
@palette6: #C9FFFE;
@palette7: #C8D6FF;
@palette8: #E4CAFF;
2020-03-04 11:56:47 +00:00
.kanban-board-header {
2020-03-04 13:39:24 +00:00
background-color: #c9c9c9;
2020-03-04 11:56:47 +00:00
}
2020-03-03 15:20:45 +00:00
2020-03-04 11:56:47 +00:00
.cp-kanban-palette-nocolor {
background-color: @palette0;
}
2020-03-03 15:20:45 +00:00
.cp-kanban-palette-color1 {
background-color: @palette1;
}
.cp-kanban-palette-color2 {
background-color: @palette2;
}
.cp-kanban-palette-color3 {
background-color: @palette3;
}
.cp-kanban-palette-color4 {
background-color: @palette4;
}
.cp-kanban-palette-color5 {
background-color: @palette5;
}
.cp-kanban-palette-color6 {
background-color: @palette6;
}
.cp-kanban-palette-color7 {
background-color: @palette7;
}
.cp-kanban-palette-color8 {
background-color: @palette8;
}
#cp-kanban-edit-body {
border: 1px solid @colortheme_modal-input;
.CodeMirror {
height: 105px;
}
.CodeMirror-scroll {
box-sizing: content-box;
}
.cp-markdown-toolbar {
background-color: #eee;
color: @cryptpad_text_col;
}
margin-bottom: 15px;
}
#cp-kanban-edit-colors {
display: flex;
justify-content: space-between;
.cp-kanban-palette {
display: inline-block;
border-radius: 50%;
height: 30px;
width: 30px;
text-align: center;
line-height: 30px;
color: @cryptpad_text_col;
}
.cp-kanban-palette-nocolor {
border: 1px solid @cryptpad_text_col;
}
}
#cp-kanban-edit-tags {
.tokenfield {
margin: 0;
}
margin-bottom: 15px;
}
#cp-app-kanban-container {
2018-05-16 17:28:30 +00:00
flex: 1;
display: flex;
flex-flow: column;
2020-03-04 14:25:03 +00:00
overflow-x: hidden;
}
#cp-app-kanban-editor {
flex: 1;
display: flex;
flex-flow: row;
height: 100%;
overflow: hidden;
2018-04-01 16:52:21 +00:00
}
2020-03-04 16:48:20 +00:00
.kanban-edit-item {
padding: 5px;
}
.kanban-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5px;
flex-wrap: wrap;
.kanban-item-body, .kanban-item-tags {
.tools_unselectable();
width: 100%;
}
.kanban-item-body {
margin: 10px 0;
font-size: 0.8em;
:last-child {
margin-bottom: 0px;
}
.markdown_main();
.markdown_cryptpad();
.markdown_preformatted-code;
.markdown_gfm-table(black);
ul {
padding-left: 30px;
}
}
.kanban-item-tags {
display: flex;
align-items: center;
flex-wrap: wrap;
span {
padding: 0 5px;
margin-right: 5px;
margin-top: 5px;
background-color: rgba(0,0,0,0.1);
display: inline-block;
font-size: 12px;
}
}
&.new-item {
padding: 10px;
}
.kanban-item-text {
.tools_unselectable();
cursor: text;
overflow-wrap: anywhere;
flex: 1;
}
}
2018-05-16 17:28:30 +00:00
#cp-app-kanban-content {
flex: 1;
display: flex;
flex-flow: column;
2020-03-04 14:25:03 +00:00
max-height: 100%;
overflow-x: auto;
2018-05-16 17:28:30 +00:00
.kanban-container-outer {
flex: 1;
display: flex;
align-items: center;
2020-03-04 14:25:03 +00:00
min-height: 0;
2018-05-16 17:28:30 +00:00
.kanban-container {
flex: 1;
display: flex;
justify-content: space-around;
2020-03-04 14:25:03 +00:00
max-height: 100%;
2018-05-16 17:28:30 +00:00
}
}
2020-03-04 16:48:20 +00:00
#cp-kanban-controls {
height: 40px;
padding: 10px;
display: flex;
position: relative;
width: 100%;
justify-content: space-between;
position: relative;
.cp-kanban-changeView {
height: 30px;
width: 60px;
span {
position: fixed;
height: 30px;
width: 30px;
line-height: 30px;
text-align: center;
display: inline-block;
background-color: @board-bg;
cursor: pointer;
&:hover {
background-color: darken(@board-bg, 10%);
}
&:last-child {
right: 10px;
}
}
}
}
&:not(.cp-kanban-quick) {
#cp-kanban-controls {
.cp-kanban-changeView {
span.cp-kanban-view {
background-color: @cryptpad_text_col !important;
color: white;
}
span.cp-kanban-view-small {
}
}
}
}
&.cp-kanban-quick {
#cp-kanban-controls {
.cp-kanban-changeView {
span.cp-kanban-view {
}
span.cp-kanban-view-small {
background-color: @cryptpad_text_col !important;
color: white;
}
}
}
.kanban-item {
.kanban-item-body, .kanban-item-tags {
display: none;
}
}
}
2020-03-02 11:05:09 +00:00
#kanban-trash {
2020-03-04 16:48:20 +00:00
height: 60px;
2020-03-02 11:05:09 +00:00
font-size: 40px;
display: flex;
align-items: center;
justify-content: center;
2020-03-04 14:25:03 +00:00
position: relative;
width: 100%;
i {
position: fixed;
}
2020-03-02 11:05:09 +00:00
&.kanban-trash-active {
color: red;
border: 1px solid red;
background-color: rgba(255,0,0,0.5);
}
.kanban-item, .kanban-board {
display: none;
}
}
2018-05-16 17:28:30 +00:00
.kanban-board {
2020-03-04 16:48:20 +00:00
background-color: @board-bg;
2020-03-04 13:39:24 +00:00
color: @cryptpad_text_col;
2020-03-04 14:25:03 +00:00
main {
min-height: 0;
padding: 0 10px;
margin: 10px 0;
flex: 1;
overflow-y: auto;
}
2018-05-16 17:28:30 +00:00
header {
display: flex;
align-items: center;
2020-03-04 14:34:36 +00:00
padding: 5px 10px;
2018-05-16 17:28:30 +00:00
.kanban-title-board {
flex: 1;
margin-right: 10px;
min-width: 0;
overflow: hidden;
2019-12-04 10:18:25 +00:00
//white-space: nowrap;
2018-05-16 17:28:30 +00:00
text-overflow: ellipsis;
}
#kanban-edit {
font-weight: bold;
}
2019-12-12 15:09:07 +00:00
&:hover {
cursor: move;
}
2018-05-16 17:28:30 +00:00
}
2020-03-04 13:39:24 +00:00
footer {
2020-03-04 14:25:03 +00:00
margin: 10px;
margin-top: 0px;
2020-03-04 13:39:24 +00:00
span {
.tools_unselectable();
outline: none;
width: 100%;
border: 1px solid @cryptpad_text_col;
border-radius: 0px;
font-size: 40px;
display: inline-flex;
justify-content: center;
align-items: center;
line-height: 1;
cursor: pointer;
&:hover {
background-color: rgba(0,0,0,0.1);
}
}
}
2018-05-16 17:28:30 +00:00
}
#kanban-edit {
width: 100%;
background: transparent;
border: 1px solid rgba(0,0,0,0.3);
2018-09-18 12:56:06 +00:00
color: inherit;
}
2018-05-16 17:28:30 +00:00
#kanban-addboard {
order: 2;
2020-03-04 14:34:36 +00:00
width: 300px;
margin: 10px 5px;
border: 1px solid @cryptpad_text_col;
height: 40px;
display: inline-flex;
justify-content: center;
align-items: center;
align-self: flex-start;
2020-03-04 14:34:36 +00:00
font-size: 40px;
cursor: pointer;
.tools_unselectable();
&:hover {
2020-03-04 14:34:36 +00:00
background-color: rgba(0,0,0,0.1);
}
2018-05-22 16:22:25 +00:00
}
.kanban-header-yellow {
background: #FC3 !important;
}
2018-05-16 17:28:30 +00:00
.kanban-header-orange {
background: #F91 !important;
}
2018-05-16 17:28:30 +00:00
.kanban-header-blue {
background: #0AC !important;
}
2018-05-16 17:28:30 +00:00
.kanban-header-red {
background: #E43 !important;
}
2018-05-16 17:28:30 +00:00
.kanban-header-green {
background: #8C4 !important;
}
2018-04-01 16:52:21 +00:00
.kanban-header-purple {
background: #c851ff !important;
}
.kanban-header-cyan {
background: #00ffff !important;
}
.kanban-header-lightgreen {
background: #c3ff5b !important;
}
.kanban-header-lightblue {
background: #adeeff !important;
}
@media (max-width: @browser_media-medium-screen) {
#cp-app-kanban-container {
flex: 1;
max-width: 100%;
resize: none;
}
}
&.cp-app-readonly {
.kanban-item, .kanban-title-board {
cursor: default !important;
.tools_unselectable();
}
.kanban-title-button, #kanban-addboard, .kanban-remove-item, .kanban-additem {
display: none !important;
}
2018-04-01 16:52:21 +00:00
}
}
2018-04-01 16:52:21 +00:00
}