aboutsummaryrefslogtreecommitdiff
path: root/atom/packages/aesthetic-ui/styles/overlays.less
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2019-03-14 23:19:58 +0100
committerBen Beltran <ben@nsovocal.com>2019-03-14 23:19:58 +0100
commitb009b50e81b6c1d0d691505b5f5c0418f559bfc0 (patch)
tree5fae800e76219eba28634cb236565f9b4bb7a2f7 /atom/packages/aesthetic-ui/styles/overlays.less
parent4efcafab7f0aa454f9ebe767133654bc9f44e12c (diff)
Remove Atom config
Diffstat (limited to 'atom/packages/aesthetic-ui/styles/overlays.less')
-rw-r--r--atom/packages/aesthetic-ui/styles/overlays.less65
1 files changed, 0 insertions, 65 deletions
diff --git a/atom/packages/aesthetic-ui/styles/overlays.less b/atom/packages/aesthetic-ui/styles/overlays.less
deleted file mode 100644
index 32e1820..0000000
--- a/atom/packages/aesthetic-ui/styles/overlays.less
+++ /dev/null
@@ -1,65 +0,0 @@
-@import "ui-variables";
-@import "ui-mixins";
-
-atom-panel.modal, .overlay {
- color: @text-color;
- background-color: @overlay-background-color;
- padding: @component-padding;
- border-radius: @component-border-radius;
- top: 20px;
- .ui-raised-shadow;
- padding-top: 28px;
- &:before {
- content: '';
- display: block;
- position: absolute;
- top: 2px;
- right: 2px;
- height: 18px;
- left: 2px;
- background: linear-gradient(to right, #09246B, #A4CBF6);
- }
-
- &.from-top, &.modal {
- transform: translateY(50vh) translateY(-50%);
- }
-
- atom-text-editor[mini] {
- margin-bottom: @component-padding;
- }
-
- .select-list ol.list-group,
- &.select-list ol.list-group {
-
- background-color: @inset-panel-background-color;
-
- position: relative;
- border-top: 1px solid @shadow-2-color;
- border-left: 1px solid @shadow-2-color;
- border-bottom: 1px solid @highlight-2-color;
- border-right: 1px solid @highlight-2-color;
-
- li {
- padding: @component-padding;
- border-top: 1px solid @inset-panel-border-color;
- border-left: 1px solid @inset-panel-border-color;
- border-right: 1px solid @inset-panel-border-color;
- &:last-child { border-bottom: 1px solid @inset-panel-border-color; }
-
- &.two-lines { padding: @component-padding/2 @component-padding; }
- &.selected {
- .key-binding { background: transparent; }
- }
- .character-match { color: currentColor; }
-
- .status.icon {
- float: right;
- margin-left: @component-icon-padding;
- &:before {
- margin-right: 0;
- }
- }
- }
-
- }
-}