mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 17:22:42 -05:00
* added support for high contrast theme * initial theming * programmatically change theme colors in agent
157 lines
3.1 KiB
CSS
157 lines
3.1 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.monaco-table * {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.monaco-table {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.monaco-table > div {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.slick-sort-indicator-asc {
|
|
background: url('sort-asc.gif');
|
|
}
|
|
|
|
.slick-sort-indicator-desc {
|
|
background: url('sort-desc.gif');
|
|
}
|
|
|
|
.slick-sort-indicator {
|
|
display: inline-block;
|
|
width: 8px;
|
|
height: 5px;
|
|
margin-left: 4px;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.slick-header-menubutton {
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
bottom: 0;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 0;
|
|
width: 18px;
|
|
background-image: url('down.svg');
|
|
}
|
|
|
|
.vs-dark .slick-header-menubutton,
|
|
.hc-black .slick-header-menubutton {
|
|
background-image: url('down-inverse.svg');
|
|
}
|
|
|
|
.slick-header-menubutton.filtered {
|
|
background-image: url('filter.svg');
|
|
}
|
|
|
|
.vs-dark .slick-header-menubutton.filtered,
|
|
.hc-black .slick-header-menubutton.filtered {
|
|
background-image: url('filter_inverse.svg');
|
|
}
|
|
|
|
.slick-header-menu {
|
|
background: none repeat scroll 0 0 white;
|
|
border: 1px solid #BFBDBD;
|
|
min-width: 175px;
|
|
padding: 4px;
|
|
z-index: 100000;
|
|
cursor: default;
|
|
display: inline-block;
|
|
margin: 0;
|
|
position: absolute;
|
|
}
|
|
|
|
.vs-dark .slick-header-menu {
|
|
background: none repeat scroll 0 0 #333333;
|
|
}
|
|
|
|
.hc-black .slick-header-menu {
|
|
background: none repeat scroll 0 0 #000000;
|
|
}
|
|
|
|
.slick-header-menu a.monaco-button.monaco-text-button {
|
|
width: 60px;
|
|
margin: 6px 6px 6px 6px;
|
|
padding: 4px;
|
|
}
|
|
|
|
.slick-header-menu .filter
|
|
{
|
|
border: 1px solid #BFBDBD;
|
|
font-size: 8pt;
|
|
height: 250px;
|
|
margin-top: 6px;
|
|
overflow: scroll;
|
|
padding: 4px;
|
|
white-space: nowrap;
|
|
width: 200px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.slick-header-menuitem
|
|
{
|
|
border: 1px solid transparent;
|
|
padding: 2px 4px;
|
|
cursor: pointer;
|
|
list-style: none outside none;
|
|
margin: 0;
|
|
}
|
|
|
|
.slick-header-menuicon
|
|
{
|
|
display: inline-block;
|
|
height: 16px;
|
|
margin-right: 4px;
|
|
vertical-align: middle;
|
|
width: 16px;
|
|
}
|
|
|
|
.slick-header-menuicon.ascending {
|
|
background: url('sort-asc.gif');
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.slick-header-menuicon.descending {
|
|
background: url('sort-desc.gif');
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.slick-header-menucontent {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.slick-header-menuitem:hover {
|
|
border-color: #BFBDBD;
|
|
}
|
|
|
|
.header-overlay, .cell-overlay, .selection-cell-overlay {
|
|
display: block;
|
|
position: absolute;
|
|
z-index: 999;
|
|
}
|
|
|
|
.vs-dark .slick-header-menu > input.input {
|
|
color: #4a4a4a;
|
|
}
|
|
|
|
.hc-black .slick-header-menu > input.input {
|
|
color: #000000;
|
|
} |