Last active
November 8, 2015 20:52
-
-
Save rarous/47484a9cf5b5b3a0a73c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.theme-atom-visual-studio-code-light-ui { | |
font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; | |
atom-pane-container atom-pane { | |
padding: 0; | |
.item-views { | |
border: 0; | |
border-top: 2px solid #007ACC; | |
} | |
} | |
atom-panel.modal{ | |
border-radius: 0; | |
padding: 0 0 6px; | |
color: #6C6C6C; | |
font-size: 13px; | |
&::before { | |
border-radius: 0; | |
background-color: #F6F6F6; | |
box-shadow: 0 2px 8px #A8A8A8; | |
} | |
&::after { | |
content: none; | |
} | |
.editor { | |
border: 0; | |
border-radius: 0; | |
margin: 6px; | |
&::before { | |
content: '>'; | |
} | |
&.is-focused { | |
border: 0; | |
background: #fff; | |
box-shadow: none; | |
} | |
} | |
.select-list ol.list-group, | |
&.select-list ol.list-group { | |
border: none; | |
background: transparent; | |
li { | |
border: 0; | |
padding: 0 0 0 11px; | |
line-height: 24px; | |
&:hover { | |
background: #efefef; | |
} | |
&.selected { | |
background: #DCEBFC; | |
} | |
.key-binding { | |
border: none; | |
padding: 0 32px 0 0; | |
background: transparent; | |
line-height: 22px; | |
} | |
.file.icon::before { | |
content: none; | |
} | |
.two-lines { | |
line-height: 24px; | |
padding: 0; | |
} | |
.primary-line { | |
display: inline; | |
line-height: 24px !important; | |
} | |
.secondary-line { | |
display: inline; | |
font-size: 12px; | |
line-height: 24px !important; | |
} | |
} | |
} | |
} | |
.tool-bar.tool-bar-24px { | |
padding-top: 0; | |
.tool-bar-btn { | |
opacity: .6; | |
} | |
.tool-bar-btn:hover { | |
opacity: 1; | |
border-color: transparent; | |
} | |
.tool-bar-spacer { | |
display: none; | |
} | |
} | |
.tab-bar { | |
background: #F6F6F6; | |
height: auto; | |
.tab { | |
border: 0; | |
height: 32px; | |
&::before, | |
&::after { | |
content: none; | |
} | |
.title { | |
text-align: left; | |
margin: 0; | |
background: #F6F6F6; | |
line-height: 38px; | |
padding-top: 2px; | |
padding-left: 8px; | |
} | |
.close-icon { | |
line-height: 38px; | |
padding: 0 8px; | |
} | |
} | |
.tab.active { | |
background: #007ACC; | |
border-radius: 0; | |
.title { | |
background: #007ACC; | |
color: #fff; | |
-webkit-mask: linear-gradient(to left, rgba(0, 0, 0, 0), #000000 1em) no-repeat; | |
} | |
.close-icon { | |
color: #fff; | |
} | |
} | |
} | |
.status-bar { | |
position: fixed; | |
z-index: 100; | |
} | |
.tree-view-scroller::before { | |
content: 'Explore'; | |
font-size: 11px; | |
text-transform: uppercase; | |
color: #6C6C6C; | |
padding: 14px 0 6px 20px; | |
} | |
.tree-view { | |
padding: 0; | |
position: relative; | |
background: #F6F6F6; | |
.project-root.project-root:first-child { | |
padding: 0; | |
} | |
.project-root.project-root::before { | |
height: 0; | |
} | |
.project-root.project-root > .header { | |
background: rgba(128, 128, 128, 0.0980392); | |
.name { | |
color: rgb(108, 108, 108); | |
text-transform: uppercase; | |
font-weight: bold; | |
font-size: 11px; | |
line-height: 24px; | |
} | |
} | |
.list-group .icon::before, | |
.list-tree .icon::before, | |
.list-item .icon::before { | |
display: none; | |
} | |
.list-group li:not(.list-nested-item), | |
.list-tree li:not(.list-nested-item), | |
.list-group li.list-nested-item > .list-item, | |
.list-tree li.list-nested-item > .list-item { | |
color: rgb(108, 108, 108); | |
font-size: 13px; | |
} | |
.list-nested-item.selected::before { | |
background: #DCEBFC; | |
} | |
.list-item.selected::before { | |
background: rgb(79, 167, 255); | |
} | |
.list-group li:not(.list-nested-item).selected, | |
.list-tree li:not(.list-nested-item).selected{ | |
color: #fff; | |
} | |
.list-group li.list-nested-item.selected > .list-item, | |
.list-tree li.list-nested-item.selected > .list-item { | |
color: rgb(108, 108, 108); | |
} | |
.list-group li:not(.list-nested-item).status-ignored, | |
.list-tree li:not(.list-nested-item).status-ignored, | |
.list-group li.list-nested-item.status-ignored > .list-item, | |
.list-tree li.list-nested-item.status-ignored > .list-item { | |
opacity: .5 !important; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment