_looking-glass.scss
ASCII text
1/* Looking Glass */ 2 3// Dialog 4#LookingGlassDialog { 5spacing: 0; 6padding: 0; 7border: 0; 8border-radius: $corner-radius; 9box-shadow: $shadow-4; 10background-color: $surface; 11color: $on-surface; 12 13& > #Toolbar { 14padding: 0 8px; 15border: 0; 16border-radius: 0; 17box-shadow: inset 0 -1px divider($on-surface); 18background-color: rgba($surface, .01); 19} 20 21.labels { 22spacing: 0; 23} 24 25.notebook-tab { 26-natural-hpadding: 12px; 27-minimum-hpadding: 6px; 28transition-duration: $duration; 29min-height: $medium-size; 30padding-left: 16px * 2; 31padding-right: 16px * 2; 32border: 0; 33color: hint($on-surface); 34font-weight: bold; 35 36&:hover { 37background-color: overlay("hover", $on-surface); 38color: hint($on-surface); 39text-shadow: none; 40} 41 42&:active { 43transition-duration: $duration-ripple; 44background-color: overlay("pressed", $on-surface); 45} 46 47&:selected { 48border: 0; 49box-shadow: inset 0 -2px $primary; 50background-color: rgba($surface, .01); 51color: $on-surface; 52text-shadow: none; 53} 54} 55 56StBoxLayout#EvalBox { 57padding: 8px; 58spacing: 4px; 59} 60 61StBoxLayout#ResultsArea { 62spacing: 4px; 63} 64} 65 66.lg-dialog { 67StEntry { 68@extend %entry; 69} 70 71.shell-link { 72&, 73&:hover, 74&:active { 75color: $primary; 76} 77} 78} 79 80.lg-completions-text { 81font-size: 1em; 82font-style: italic; 83} 84 85.lg-obj-inspector-title { 86spacing: 4px; 87} 88 89.lg-obj-inspector-button { 90@extend %button; 91 92&, 93&:hover { 94border: 0; 95} 96} 97 98// Windows 99#Windows { 100padding: 8px; 101} 102 103// Extensions 104#lookingGlassExtensions { 105padding: 8px; 106} 107 108.lg-extensions-list { 109padding: 0; 110spacing: 6px; 111} 112 113.lg-extension { 114padding: 4px; 115border: 0; 116border-radius: 0; 117background-color: transparent; 118} 119 120.lg-extension-name { 121@include type(headline6); 122} 123 124.lg-extension-meta { 125spacing: 6px; 126} 127 128// Inspector 129#LookingGlassPropertyInspector { 130padding: 6px; 131border: 0; 132border-radius: $corner-radius; 133box-shadow: $shadow-4; 134background-color: $surface; 135color: $on-surface; 136} 137