Skip to content

Commit

Permalink
update admin sidebar styling to dark mode
Browse files Browse the repository at this point in the history
update admin sidebar styling to dark mode

Differential Revision: https://phabricator.twitter.biz/D1143989
  • Loading branch information
cambridgemike authored and jenkins committed May 17, 2024
1 parent e958a8c commit f39efac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions server/src/main/resources/twitter-server/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ h1,h2,h3,h4,h5,h6 {
width: 250px;
overflow-y: auto;
overflow-x: auto;
background-color: #428bca;
background-color: rgb(0,0,0);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
Expand All @@ -47,7 +47,7 @@ h1,h2,h3,h4,h5,h6 {
left: 250px;
width: 12px;
height: 100%;
background-color: #428bca;
background-color: rgb(0,0,0);
border-left: 1px solid rgba(0, 0, 0, 0.1);
border-right: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 0 red;
Expand All @@ -59,7 +59,7 @@ h1,h2,h3,h4,h5,h6 {
}

#toggle:hover {
background-color: #2972B1;
background-color: rgb(83, 83, 83);
}

#wrapper.toggled #toggle {
Expand Down Expand Up @@ -93,11 +93,11 @@ nav li {
}

nav .selectable:hover:not(.selected) {
background-color: #2972B1;
background-color: rgb(83, 83, 83);
}

nav .selected {
background-color: #0F5897;
background-color: rgb(0, 0, 0);
}

nav li {
Expand Down

0 comments on commit f39efac

Please sign in to comment.