Skip to content

Commit b6fe002

Browse files
committed
fix: styling of bottom panels btn-alt-quiet
1 parent e75a0e3 commit b6fe002

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

src/styles/brackets_core_ui_variables.less

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@
118118
@bc-btn-bg: #e5e9e9;
119119
@bc-btn-bg-down: #d3d7d7;
120120
@bc-btn-bg-down-alt: #404141;
121+
@bc-btn-bg-down-flush: #b5b8b8;
121122
@bc-btn-border: #b2b5b5;
122123
@bc-btn-border-error: #fa689d;
123124
@bc-btn-border-error-glow: #ffb0cd;
@@ -229,6 +230,7 @@
229230
@dark-bc-btn-bg: #3f3f3f;
230231
@dark-bc-btn-bg-down: #383838;
231232
@dark-bc-btn-bg-down-alt: #404141;
233+
@dark-bc-btn-bg-down-flush: #404141;
232234
@dark-bc-btn-border: #202020;
233235
@dark-bc-btn-border-error: #fa689d;
234236
@dark-bc-btn-border-error-glow: transparent;

src/styles/brackets_patterns_override.less

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2072,6 +2072,33 @@ input[type="color"],
20722072
}
20732073
}
20742074

2075+
.bottom-panel {
2076+
.btn-alt-quiet { // No dark style required because these reside in the sidebar.
2077+
border: 1px solid transparent;
2078+
border-radius: @bc-border-radius;
2079+
text-decoration: none;
2080+
2081+
&:hover {
2082+
border: 1px solid @bc-shadow;
2083+
box-shadow: inset 0 1px 0 @bc-highlight;
2084+
.dark & {
2085+
border: 1px solid @dark-bc-shadow;
2086+
box-shadow: inset 0 1px 0 @dark-bc-highlight;
2087+
}
2088+
}
2089+
&:active {
2090+
background-color: @bc-btn-bg-down-flush;
2091+
border: 1px solid @bc-shadow;
2092+
box-shadow: inset 0 1px 0 @bc-shadow-small;
2093+
.dark & {
2094+
background-color: @dark-bc-btn-bg-down-flush;
2095+
border: 1px solid @dark-bc-shadow;
2096+
box-shadow: inset 0 1px 0 @dark-bc-shadow-small;
2097+
}
2098+
}
2099+
}
2100+
}
2101+
20752102
.btn-mini {
20762103
padding: 2px 6px;
20772104
font-size: 11px;

0 commit comments

Comments
 (0)