2014-02-16 18:30:00 -05:00
|
|
|
@import "app/styles/bootstrap/mixins"
|
|
|
|
@import "app/styles/mixins"
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
.spell-palette-entry-view
|
2014-02-16 18:30:00 -05:00
|
|
|
display: block
|
|
|
|
padding: 0px 4px
|
2014-01-03 13:32:13 -05:00
|
|
|
font-family: Menlo, Monaco, Consolas, "Courier New", monospace
|
|
|
|
font-size: 12px
|
2014-02-16 18:30:00 -05:00
|
|
|
border: 1px solid transparent
|
|
|
|
cursor: pointer
|
2014-02-23 19:49:25 -05:00
|
|
|
@include user-select(all)
|
2014-02-16 18:30:00 -05:00
|
|
|
|
|
|
|
&:hover
|
2014-02-23 18:10:03 -05:00
|
|
|
border: 1px solid #000000
|
2014-02-16 18:30:00 -05:00
|
|
|
|
|
|
|
&.pinned
|
2014-02-23 18:10:03 -05:00
|
|
|
background-color: darken(#FFFFFF, 25%)
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
// Pulling these colors from the most relevant textmate-theme classes
|
|
|
|
&.function
|
2014-02-23 18:10:03 -05:00
|
|
|
color: #0066FF
|
2014-01-03 13:32:13 -05:00
|
|
|
&.object
|
|
|
|
color: rgb(6, 150, 14)
|
|
|
|
&.string
|
|
|
|
color: rgb(3, 106, 7)
|
|
|
|
&.number
|
|
|
|
color: rgb(0, 0, 205)
|
|
|
|
&.boolean
|
|
|
|
color: rgb(88, 92, 246)
|
|
|
|
&.undefined
|
|
|
|
color: rgb(197, 6, 11)
|
|
|
|
|