mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-25 01:25:36 -05:00
* widget formatting * tab panel style * breadcrumb padding * dark theme colors * Addressing comments * move colors to theme.ts * update properties widget colors * update color names
41 lines
994 B
CSS
41 lines
994 B
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
.vs .chevron-right.codicon {
|
|
background-image: url("chevron_right.svg");
|
|
}
|
|
|
|
.vs-dark .chevron-right.codicon,
|
|
.hc-black .chevron-right.codicon {
|
|
background-image: url("chevron_right_inverse.svg");
|
|
}
|
|
|
|
breadcrumb .codicon {
|
|
background-size: 16px;
|
|
background-position: 50% 50%;
|
|
background-repeat: no-repeat;
|
|
padding: 8px;
|
|
}
|
|
|
|
breadcrumb .chevron-right.codicon {
|
|
background-size: 16px;
|
|
background-position: 50% 50%;
|
|
background-repeat: no-repeat;
|
|
padding: 8px;
|
|
}
|
|
|
|
breadcrumb .router-link {
|
|
cursor: pointer;
|
|
}
|
|
|
|
breadcrumb .breadcrumb-container {
|
|
display: flex;
|
|
flex-flow: row;
|
|
align-items: center;
|
|
margin: 10px;
|
|
margin-left: 19px
|
|
}
|