Merge pull request #874 from atom/bo-style-updates

Style updates
This commit is contained in:
Ben Ogle
2013-09-23 16:34:23 -07:00
7 changed files with 62 additions and 7 deletions

View File

@@ -39,9 +39,9 @@
"temp": "0.5.0",
"underscore": "1.4.4",
"atom-light-ui": "0.1.1",
"atom-light-ui": "0.2.0",
"atom-light-syntax": "0.2.0",
"atom-dark-ui": "0.1.1",
"atom-dark-ui": "0.2.0",
"atom-dark-syntax": "0.2.0",
"base16-tomorrow-dark-theme": "0.1.0",
"solarized-dark-syntax": "0.1.0",
@@ -55,7 +55,7 @@
"command-logger": "0.3.0",
"command-palette": "0.3.0",
"editor-stats": "0.2.0",
"find-and-replace": "0.5.0",
"find-and-replace": "0.6.0",
"fuzzy-finder": "0.5.0",
"gfm": "0.4.0",
"git-diff": "0.3.0",
@@ -78,8 +78,8 @@
"timecop": "0.2.0",
"to-the-hubs": "0.3.0",
"toml": "0.2.0",
"tree-view": "0.5.0",
"ui-demo": "0.6.0",
"tree-view": "0.6.0",
"ui-demo": "0.7.0",
"whitespace": "0.4.0",
"wrap-guide": "0.2.0",

View File

@@ -71,3 +71,5 @@
@component-border-radius: 2px;
@tab-height: 30px;
@font-family: Arial;

View File

@@ -71,3 +71,5 @@
@component-border-radius: 2px;
@tab-height: 30px;
@font-family: Arial;

View File

@@ -7,7 +7,40 @@
background-color: transparent;
box-shadow: none;
.panel-heading {
border-radius: 0;
&.bordered {
.panel-heading {
border-radius: @component-border-radius @component-border-radius 0 0;
}
}
}
.inset-panel {
.panel-heading {
border-radius: @component-border-radius @component-border-radius 0 0;
}
}
.focusable-panel {
opacity: 0.8;
&:focus {
opacity: 1;
}
}
.panel-heading {
margin: 0;
border-radius: 0;
font-size: @font-size;
line-height: 1;
.btn {
@btn-height: @component-line-height - 5px;
height: @btn-height;
line-height: @btn-height;
font-size: @font-size - 2px;
position: relative;
top: -5px;
}
}

View File

@@ -8,6 +8,16 @@ body {
width: 100%;
height: 100%;
overflow: hidden;
font-family: @font-family;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: @font-family;
}
#root-view {
@@ -15,6 +25,7 @@ body {
overflow: hidden;
position: relative;
background-color: @app-background-color;
font-family: @font-family;
#horizontal {
display: -webkit-flex;

View File

@@ -16,9 +16,11 @@
// Blocks
// Must be div.block so as not to affect syntax highlighting.
ul.block,
div.block {
margin-bottom: @component-padding;
}
div > ul.block:last-child,
div > div.block:last-child {
margin-bottom: 0;
}

View File

@@ -77,3 +77,8 @@
@component-border-radius: 2px;
@tab-height: 30px;
// Other
@font-family: 'Lucida Grande', Arial, sans-serif;