1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
/* General dash */
#dash.vertical-overview {
margin-right: 0px;
margin-left: 0px;
padding: 0px 0;
}
#dash.vertical-overview .app-well-app,
#dash.vertical-overview .show-apps {
padding-right: 8px;
padding-left: 8px;
/*spacing between icons*/
padding-top: 1px;
padding-bottom: 1px;
margin: 0px;
}
#dash.vertical-overview .dash-separator {
height: 1px;
margin-right: 2px;
margin-left: 2px;
margin-top: 4px;
margin-bottom: 4px;
background-color: transparentize(#eeeeec, 0.7);
}
#dash.vertical-overview .overview-icon {
padding: 5px 0;
}
#dash.vertical-overview .app-well-app-running-dot {
margin: 4px 0px;
width: 2px;
height: 16px;
}
#dash.vertical-overview .dash-background {
margin: 0;
}
#dash.vertical-overview-left .dash-background {
border-radius: 0 18px 18px 0;
border-left: 0px;
padding: 8px 12px 8px 4px;
}
#dash.vertical-overview-right .dash-background {
border-radius: 18px 0 0 18px;
border-right: 0px;
padding: 8px 4px 8px 12px;
}
/* default horizontal dash */
.dash-background {
padding: 6px;
border-radius: 17px;
}
.app-well-app {
margin-left: 1px;
margin-right: 1px;
}
.app-well-app-running-dot {
margin-bottom: 6px;
width: 16px;
height: 2px;
}
/* add shadow to the app grid app label to be readable if it overlaps light icon below */
.overview-icon-with-label {
text-shadow: 1px 1px 3px rgba(33, 33, 33, 1);
}
.search-entry {
padding: 3px;
padding-left: 5px;
padding-right: 5px;
}
/*adjustment for the vertical ws switcher indicator popup*/
.ws-switcher-indicator {
padding: 3px;
margin: 5px;
}
.ws-switcher-indicator:active {
padding: 5px;
margin: 3px;
}
/*ws thumbnails captions*/
.ws-tmb-label {
padding: 2px;
color: rgb(255, 255, 255);
background-color: rgba(10,10,10,0.8);
text-align: center;
}
.ws-tmb, .ws-tmb-labeled {
border-radius: 6px;
}
.ws-tmb-labeled {
border: 0px;
}
/*app grid page indicatos*/
.page-indicator-icon {
margin: 10px 10px 10px 10px;
}
.page-indicator {
padding: 0px;
}
/* GS 43 App Grid - indicators that show up when dragging icon */
.prevPageIndicator {
background: rgba(255, 255, 255, 0.1);
background-gradient-start: rgba(255, 255, 255, 0.1);
background-gradient-end: transparent;
background-gradient-direction: vertical;
border-radius: 100px 100px 0px 0px;
}
.nextPageIndicator {
background: rgba(255, 255, 255, 0.1);
background-gradient-start: transparent;
background-gradient-end: rgba(255, 255, 255, 0.1);
background-gradient-direction: vertical;
border-radius: 0px 0px 100px 100px;
}
.search-section-content {
background-color: rgba(20, 20, 20, 0.8);
color: white;
}
.transparent-panel {
background-color: transparent;
}
/*reduce spacing between app icons in search results*/
.grid-search-results {
spacing: 2px;
}
/*.panel {
text-shadow: 1px 1px 3px rgba(33, 33, 33, 1);
}*/
/* hide vertical scroll bar, it's distracting in the search results */
StButton#vhandle {
background-color: transparent;
}
.show-apps-icon-horizontal-hide {
width: 0;
margin: 0;
spacing: 0;
}
.show-apps-icon-vertical-hide {
height: 0;
margin: 0;
spacing: 0;
}
|