mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
This removes the SVG spinner which had been incorrectly rendering since the bootstrap upgrade due to box sizing issues.
75 lines
1.1 KiB
Plaintext
75 lines
1.1 KiB
Plaintext
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#root-view {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
|
|
#horizontal {
|
|
display: -webkit-flex;
|
|
height: 100%;
|
|
}
|
|
|
|
#vertical {
|
|
display: -webkit-flex;
|
|
-webkit-flex: 1;
|
|
-webkit-flex-flow: column;
|
|
}
|
|
}
|
|
|
|
#panes {
|
|
position: relative;
|
|
-webkit-flex: 1;
|
|
|
|
.column {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
.row {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.pane {
|
|
position: absolute;
|
|
display: -webkit-flex;
|
|
-webkit-flex-flow: column;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.pane .item-views {
|
|
-webkit-flex: 1;
|
|
display: -webkit-flex;
|
|
-webkit-flex-flow: column;
|
|
}
|
|
|
|
.pane .item-views > * {
|
|
-webkit-flex: 1;
|
|
min-height: 0;
|
|
}
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Octicons Regular';
|
|
src: url("octicons-regular-webfont.woff") format("woff");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|