Skip to content

Commit

Permalink
FIX: Add Missing border-radius Variable
Browse files Browse the repository at this point in the history
  • Loading branch information
aljawaid committed Jan 11, 2023
1 parent c80c913 commit 133fcce
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Assets/css/kanboardcss.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ summary i {
.fa-file-text-o {}
.fa-font {
border: 1px solid #000;
border-radius: 3px;
border-radius: var(--border-radius-kbcss);
padding-top: 1px;
padding-bottom: 1px;
width: 18px !important;
Expand Down Expand Up @@ -650,7 +650,7 @@ th.board-swimlane-header {
border-left-width: 2.5px!important;
background-color: white!important;
background: #fff;
border-radius: 3px;
border-radius: var(--border-radius-kbcss);
padding-left: 6px;
padding-right: 4px;
padding-top: 6px;
Expand Down Expand Up @@ -693,15 +693,15 @@ th.board-swimlane-header {
color: white;
background-color: grey;
padding: 2px 4px;
border-radius: 3px;
border-radius: var(--border-radius-kbcss);
}

/* FOR INLINE CODE */
code {
margin: 0;
padding: 2px 0.4em;
background-color: rgba(27, 31, 35, 0.32);
border-radius: 3px;
border-radius: var(--border-radius-kbcss);
color: #000;
font-family: Tahoma;
font-size: 85%;
Expand Down Expand Up @@ -1327,7 +1327,7 @@ select {
background: #ff000054;
opacity: 1 !important;
padding: 2px 3px;
border-radius: 3px;
border-radius: var(--border-radius-kbcss);
}

.task-priority-2 {
Expand All @@ -1336,7 +1336,7 @@ select {
background: #ff000054;
opacity: 1 !important;
padding: 2px 3px;
border-radius: 3px;
border-radius: var(--border-radius-kbcss);
}

.task-priority-3 {
Expand All @@ -1345,23 +1345,23 @@ select {
background: #00800078;
opacity: 1 !important;
padding: 2px 3px;
border-radius: 3px;
border-radius: var(--border-radius-kbcss);
}
.task-priority-4 {
color: #000;
font-weight: bold;
background: #00800078;
opacity: 1 !important;
padding: 2px 3px;
border-radius: 3px;
border-radius: var(--border-radius-kbcss);
}
.task-priority-5 {
color: #000;
font-weight: bold;
background: #ffa5006e;
opacity: 1 !important;
padding: 2px 3px;
border-radius: 3px;
border-radius: var(--border-radius-kbcss);
}

/* ############################################################################################ */
Expand Down Expand Up @@ -1463,7 +1463,7 @@ tr.board-swimlane > td {
margin-top: 0;
margin: auto;
border: 3px dashed #007ac9;
border-radius: 3px;
border-radius: var(--border-radius-kbcss);
}

li.summary-title {
Expand Down

0 comments on commit 133fcce

Please sign in to comment.