2023-09-15 16:33:27 +01:00
|
|
|
@import "./Common/Constants";
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-family: @FabricFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: @FabricFont;
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: @FabricAccentMedium;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover,
|
|
|
|
a:focus {
|
|
|
|
color: @FabricAccentMediumHigh;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2024-10-24 17:59:03 +01:00
|
|
|
.splashLoaderContainer {
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
2023-09-15 16:33:27 +01:00
|
|
|
#divExplorer {
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.resourceTreeAndTabs {
|
2024-02-27 17:25:35 +00:00
|
|
|
border-radius: 0px;
|
2023-09-15 16:33:27 +01:00
|
|
|
box-shadow: @FabricBoxBorderShadow;
|
2024-02-27 17:25:35 +00:00
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 0px;
|
2023-09-15 16:33:27 +01:00
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabsManagerContainer {
|
2024-11-13 08:52:51 +00:00
|
|
|
background-color: #ffffff;
|
2023-09-15 16:33:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-tabs-margin {
|
2024-08-01 18:02:36 +01:00
|
|
|
padding-top: 5px;
|
2024-11-13 08:52:51 +00:00
|
|
|
background-color: #ffffff;
|
2023-09-15 16:33:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.commandBarContainer {
|
|
|
|
background-color: #ffffff;
|
2024-02-27 17:25:35 +00:00
|
|
|
border-radius: @FabricBoxBorderRadius @FabricBoxBorderRadius 0px 0px;
|
2023-09-15 16:33:27 +01:00
|
|
|
box-shadow: @FabricBoxBorderShadow;
|
2024-01-18 16:13:04 +00:00
|
|
|
margin-top: 0px;
|
2024-02-27 17:25:35 +00:00
|
|
|
margin-bottom: 0px;
|
2023-09-15 16:33:27 +01:00
|
|
|
padding-top: 2px;
|
2024-01-18 16:13:04 +00:00
|
|
|
padding: 0px;
|
|
|
|
height: 40px;
|
2023-09-15 16:33:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.dividerContainer {
|
|
|
|
padding: @SmallSpace 0px @SmallSpace 0px;
|
2024-01-18 16:13:04 +00:00
|
|
|
height: @FabricCommandBarButtonHeight;
|
2023-09-15 16:33:27 +01:00
|
|
|
.flex-display();
|
|
|
|
|
|
|
|
span {
|
|
|
|
border-left: @ButtonBorderWidth solid @BaseMedium;
|
|
|
|
margin: 0 10px 0 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-13 08:52:51 +00:00
|
|
|
.nav-tabs > li > .tabNavContentContainer > .tab_Content:hover {
|
2023-09-15 16:33:27 +01:00
|
|
|
border-bottom: 2px solid #e0e0e0;
|
|
|
|
}
|
|
|
|
|
2024-11-13 08:52:51 +00:00
|
|
|
.nav-tabs > li.active > .tabNavContentContainer > .tab_Content,
|
|
|
|
.nav-tabs > li.active > .tabNavContentContainer > .tab_Content:hover {
|
2023-09-15 16:33:27 +01:00
|
|
|
border-bottom: 2px solid @FabricAccentMedium;
|
|
|
|
}
|
|
|
|
|
2024-11-13 08:52:51 +00:00
|
|
|
.nav-tabs > li.active > .tabNavContentContainer > .tab_Content > .contentWrapper > .tabNavText {
|
2023-09-15 21:15:33 +01:00
|
|
|
border-bottom: 0px none transparent;
|
|
|
|
}
|
|
|
|
|
2023-09-15 16:33:27 +01:00
|
|
|
.tabNavContentContainer {
|
|
|
|
padding: @SmallSpace 0px @SmallSpace 0px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab_Content {
|
|
|
|
border-right: 0px none transparent;
|
|
|
|
margin: 0px @SmallSpace 0px @SmallSpace;
|
|
|
|
width: calc(@TabsWidth - (@SmallSpace * 2));
|
|
|
|
padding-bottom: @SmallSpace;
|
|
|
|
|
2024-06-05 16:12:48 +01:00
|
|
|
.contentWrapper {
|
2024-11-13 08:52:51 +00:00
|
|
|
.statusIconContainer {
|
|
|
|
margin-left: 0px;
|
2024-06-05 16:12:48 +01:00
|
|
|
}
|
2024-11-13 08:52:51 +00:00
|
|
|
}
|
2023-09-15 16:33:27 +01:00
|
|
|
|
|
|
|
.tabIconSection {
|
|
|
|
.cancelButton {
|
|
|
|
padding: 0px 0px 0px @SmallSpace;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.resourceTree {
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.accordion {
|
|
|
|
.accordionItemContainer {
|
|
|
|
.accordionItemHeader {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.treeComponent {
|
|
|
|
.nodeItem {
|
|
|
|
&:focus {
|
|
|
|
outline: 2px @FabricAccentMedium;
|
|
|
|
}
|
|
|
|
|
|
|
|
.treeNodeHeader {
|
|
|
|
padding: 5px 5px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: @FabricAccentLight;
|
|
|
|
|
|
|
|
.treeMenuEllipsis {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.showingMenu {
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.selected {
|
2024-11-13 08:52:51 +00:00
|
|
|
& > .treeNodeHeader {
|
2023-09-15 16:33:27 +01:00
|
|
|
background-color: @FabricAccentExtra;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataExplorerErrorConsoleContainer {
|
2024-11-13 08:52:51 +00:00
|
|
|
border-radius: 0px 0px @FabricBoxBorderRadius @FabricBoxBorderRadius;
|
2023-09-15 16:33:27 +01:00
|
|
|
box-shadow: @FabricBoxBorderShadow;
|
2024-02-27 17:25:35 +00:00
|
|
|
margin-top: 0px;
|
2023-09-15 16:33:27 +01:00
|
|
|
width: auto;
|
|
|
|
align-self: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filterbtnstyle {
|
|
|
|
background: #fff;
|
|
|
|
color: #000;
|
|
|
|
border: solid 1px #d1d1d1;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filterbtnstyle:hover {
|
|
|
|
background: @FabricAccentLight;
|
|
|
|
color: #000;
|
|
|
|
border: solid 1px #d1d1d1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filterbtnstyle:active {
|
|
|
|
background: @FabricAccentLight;
|
|
|
|
color: #000;
|
|
|
|
border: solid 1px #d1d1d1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filterbtnstyle:focus {
|
|
|
|
background: #fff;
|
|
|
|
color: #000;
|
|
|
|
border: solid 1px #d1d1d1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gridRowSelected .tabdocumentsGridElement:hover {
|
|
|
|
background-color: @FabricAccentLight !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.refreshcol {
|
|
|
|
filter: brightness(0) saturate(100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.refreshcol1 {
|
|
|
|
filter: brightness(0) saturate(100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.fileImportImg img {
|
|
|
|
filter: brightness(0) saturate(100%);
|
2024-11-13 08:52:51 +00:00
|
|
|
}
|