mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
add overlay styles
Any element that appears from the edge of the editor
This commit is contained in:
20
themes/atom-dark-ui/overlay.css
Normal file
20
themes/atom-dark-ui/overlay.css
Normal file
@@ -0,0 +1,20 @@
|
||||
.overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
width: 400px;
|
||||
margin-left: -200px;
|
||||
background: #1e1e1e;
|
||||
color: #eee;
|
||||
padding: 10px;
|
||||
z-index: 9999;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.overlay.mini {
|
||||
width: 200px;
|
||||
margin-left: -100px;
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
"select-list.css",
|
||||
"tree-view.css",
|
||||
"tabs.css",
|
||||
"overlay.css",
|
||||
"wrap-guide.css",
|
||||
"status-bar.css",
|
||||
"symbols-view.css",
|
||||
|
||||
Reference in New Issue
Block a user