_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-z8; 10background-color: $surface-z8; 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-z8, .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: hover-overlay($on-surface); 38color: hint($on-surface); 39text-shadow: none; 40} 41 42&:active { 43transition-duration: $duration-ripple; 44background-color: pressed-overlay($on-surface); 45} 46 47&:selected { 48border: 0; 49box-shadow: inset 0 -2px $primary; 50background-color: rgba($surface-z8, .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@if $version >= 3.38 { 80.actor-link { 81&, 82&:hover, 83&:active { 84color: inherit; 85} 86} 87} 88} 89 90.lg-completions-text { 91font-size: 1em; 92font-style: italic; 93} 94 95.lg-obj-inspector-title { 96spacing: 4px; 97} 98 99.lg-obj-inspector-button { 100@extend %button; 101 102&, 103&:hover { 104border: 0; 105} 106} 107 108// Windows 109#Windows { 110padding: 8px; 111} 112 113// Extensions 114#lookingGlassExtensions { 115padding: 8px; 116} 117 118.lg-extensions-list { 119padding: 0; 120spacing: 6px; 121} 122 123.lg-extension { 124padding: 4px; 125border: 0; 126border-radius: 0; 127background-color: transparent; 128} 129 130.lg-extension-name { 131@include type(headline6); 132} 133 134.lg-extension-meta { 135spacing: 6px; 136} 137 138// Inspector 139#LookingGlassPropertyInspector { 140padding: 6px; 141border: 0; 142border-radius: $corner-radius; 143box-shadow: $shadow-z8; 144background-color: $surface-z8; 145color: $on-surface; 146} 147