Skip to content

Commit

Permalink
Finalize titlebar styling
Browse files Browse the repository at this point in the history
  • Loading branch information
adlk committed Mar 3, 2018
1 parent dcc2dd3 commit a17cfb3
Showing 1 changed file with 48 additions and 5 deletions.
53 changes: 48 additions & 5 deletions src/styles/title-bar.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,50 @@
#electron-app-title-bar span {
line-height: normal;
}
#electron-app-title-bar {
background: $theme-gray-lightest;
border-bottom: 0;
box-shadow: 0px 0 8px rgba(#000, 0.1);

span {
line-height: normal;
}

div {
height: auto;
}

.toolbar-dropdown {
&.open {
box-shadow: 0px 0 8px rgba(#000, 0.1);
}

&:not(.open) {
.menu-item .menu-label {
opacity: 1;
}

&>.toolbar-button > button:hover {
background: $theme-brand-primary;
}
}
}

.list-item {
.menu-item {
margin: 4px;
border-radius: $theme-border-radius-small;
}
&.selected {
// background: $theme-brand-primary;
background: none;

.menu-item {
background: $theme-brand-primary;
}
}
}

#electron-app-title-bar div {
height: auto;
.menu-pane {
box-shadow: 0px 0 10px rgba(#000, 0.5);
border-bottom-left-radius: $theme-border-radius-small;
border-bottom-right-radius: $theme-border-radius-small;
}
}

0 comments on commit a17cfb3

Please sign in to comment.