mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-10-06 03:14:39 +08:00
Merge pull request #1861 from jamiewilson/darkside
(darkside) correcting window buttons, adding input focus
This commit is contained in:
commit
d786fb85da
1 changed files with 11 additions and 9 deletions
|
@ -81,21 +81,18 @@
|
||||||
.toolbar-window-controls {
|
.toolbar-window-controls {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
min-width: 50px;
|
||||||
min-width: 0;
|
|
||||||
width: 50px;
|
width: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.toolbar-window-controls button {
|
.toolbar-window-controls button {
|
||||||
background-color: @sidebar-text;
|
background-color: @sidebar-text;
|
||||||
background-image: none !important;
|
background-image: none !important;
|
||||||
width: 12px;
|
|
||||||
height: 12px;
|
|
||||||
float: none;
|
float: none;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-right: 5px;
|
|
||||||
transform: scaleY(0.5);
|
transform: scaleY(0.5);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
transition-duration: 150ms;
|
transition-duration: 150ms;
|
||||||
|
@ -110,17 +107,14 @@
|
||||||
|
|
||||||
.toolbar-window-controls .close {
|
.toolbar-window-controls .close {
|
||||||
background-color: @danger;
|
background-color: @danger;
|
||||||
background-image: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.toolbar-window-controls .minimize {
|
.toolbar-window-controls .minimize {
|
||||||
background-color: @minimize;
|
background-color: @minimize;
|
||||||
background-image: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.toolbar-window-controls .maximize {
|
.toolbar-window-controls .maximize {
|
||||||
background-color: @maximize;
|
background-color: @maximize;
|
||||||
background-image: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.is-blurred {
|
.is-blurred {
|
||||||
|
@ -366,9 +360,17 @@ body.is-blurred .list-tabular .list-tabular-item.keyboard-cursor {
|
||||||
}
|
}
|
||||||
|
|
||||||
//====================================================
|
//====================================================
|
||||||
// Search & Suggestion Menu
|
// Inputs, Search & Suggestion Menu
|
||||||
//====================================================
|
//====================================================
|
||||||
|
|
||||||
|
textarea:focus,
|
||||||
|
input[type="text"]:focus,
|
||||||
|
input[type="email"]:focus,
|
||||||
|
.search-bar .menu .header-container input:focus {
|
||||||
|
border-color: @accent;
|
||||||
|
box-shadow: 0 0 1.5px @accent;
|
||||||
|
}
|
||||||
|
|
||||||
.search-bar {
|
.search-bar {
|
||||||
margin: 7.5px;
|
margin: 7.5px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
Loading…
Add table
Reference in a new issue