Files
Codiad/components/editor/screen.css
Florent Galland c9859a9978 Add root-editor-wrapper and improve tabs colors
Adding a wrapper makes more sense. Now the editor-region is really 100%
high. Need to fix the editor-top-bar paddings.
2012-12-02 21:02:11 +01:00

25 lines
505 B
CSS
Executable File

#editor-region {
width: 100%;
height: 100%;
}
.editor {
width: 100%;
height: 100%;
color: #fff;
}
.ace_content {
padding: 0;
margin: 0;
}
.ace_gutter-layer {
padding: 0;
-webkit-box-shadow: inset -3px 0px 10px 0px rgba(0, 0, 0, .5);
-moz-box-shadow: inset -3px 0px 10px 0px rgba(0, 0, 0, .5);
box-shadow: inset -3px 0px 10px 0px rgba(0, 0, 0, .5);
background: url(gutter-bg.jpg);
color: #ccc;
}
.ace_error {
background-position: 3px 0 !important;
}