Skip to content

Commit

Permalink
tabs: further tweaking of default color #550
Browse files Browse the repository at this point in the history
  • Loading branch information
McShelby committed Jun 8, 2023
1 parent cef256e commit d86973a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions static/css/ie.css
Original file line number Diff line number Diff line change
Expand Up @@ -429,8 +429,8 @@
}

div.box.grey {
background-color: rgba( 128, 128, 128, 1 ); /* var(--INTERNAL-BOX-GREY-color) */
border-color: rgba( 128, 128, 128, 1 ); /* var(--INTERNAL-BOX-GREY-color) */
background-color: rgba( 160, 160, 160, 1 ); /* var(--INTERNAL-BOX-GREY-color) */
border-color: rgba( 160, 160, 160, 1 ); /* var(--INTERNAL-BOX-GREY-color) */
}

div.box.grey > .box-content {
Expand Down Expand Up @@ -642,11 +642,11 @@
}

.btn.cstyle.grey {
background-color: rgba( 128, 128, 128, 1 ); /* var(--BOX-GREY-color) */
background-color: rgba( 160, 160, 160, 1 ); /* var(--BOX-GREY-color) */
}

.btn.cstyle.grey > * {
border-color: rgba( 128, 128, 128, 1 ); /* var(--BOX-GREY-color) */
border-color: rgba( 160, 160, 160, 1 ); /* var(--BOX-GREY-color) */
}

.btn.cstyle.orange {
Expand Down Expand Up @@ -740,7 +740,7 @@
}

.badge.grey > .badge-content {
background-color: rgba( 128, 128, 128, 1 ); /* var(--INTERNAL-BOX-GREY-color) */
background-color: rgba( 160, 160, 160, 1 ); /* var(--INTERNAL-BOX-GREY-color) */
}

.badge.orange > .badge-content {
Expand Down
2 changes: 1 addition & 1 deletion static/css/theme-neon.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
--BOX-BLUE-TEXT-color: var( --BOX-BLUE-color ); /* text color of blue boxes */
--BOX-GREEN-color: rgba( 42, 178, 24, 1 ); /* background color of green boxes */
--BOX-GREEN-TEXT-color: var( --BOX-GREEN-color ); /* text color of green boxes */
--BOX-GREY-color: rgba( 128, 128, 128, 1 ); /* background color of grey boxes */
--BOX-GREY-color: rgba( 160, 160, 160, 1 ); /* background color of grey boxes */
--BOX-GREY-TEXT-color: var( --BOX-GREY-color ); /* text color of grey boxes */
--BOX-ORANGE-color: rgba( 237, 153, 9, 1 ); /* background color of orange boxes */
--BOX-ORANGE-TEXT-color: var( --BOX-ORANGE-color ); /* text color of orange boxes */
Expand Down
2 changes: 1 addition & 1 deletion static/css/variant-internal.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

--INTERNAL-BOX-BLUE-color: var(--BOX-BLUE-color, rgba( 48, 117, 229, 1 ));
--INTERNAL-BOX-GREEN-color: var(--BOX-GREEN-color, rgba( 42, 178, 24, 1 ));
--INTERNAL-BOX-GREY-color: var(--BOX-GREY-color, rgba( 128, 128, 128, 1 ));
--INTERNAL-BOX-GREY-color: var(--BOX-GREY-color, rgba( 160, 160, 160, 1 ));
--INTERNAL-BOX-ORANGE-color: var(--BOX-ORANGE-color, rgba( 237, 153, 9, 1 ));
--INTERNAL-BOX-RED-color: var(--BOX-RED-color, rgba( 224, 62, 62, 1 ));

Expand Down

0 comments on commit d86973a

Please sign in to comment.