add overlay styles

Any element that appears from the edge of the editor
This commit is contained in:
Justin Palmer
2013-02-02 13:44:08 -08:00
parent 668c66fbe5
commit f46b4779b5
2 changed files with 21 additions and 0 deletions

View 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;
}

View File

@@ -6,6 +6,7 @@
"select-list.css",
"tree-view.css",
"tabs.css",
"overlay.css",
"wrap-guide.css",
"status-bar.css",
"symbols-view.css",