This commit is contained in:
a.bouhuolia
2021-04-19 18:34:41 +02:00
19 changed files with 413 additions and 43 deletions

View File

@@ -33,6 +33,8 @@
// Views
@import 'views/filter-dropdown';
// fonts
@import 'pages/fonts';
.App {
min-width: 960px;
@@ -40,11 +42,11 @@
// =======
body.hide-scrollbar .Pane2{
body.hide-scrollbar .Pane2 {
overflow: hidden;
}
.bp3-fill{
.bp3-fill {
.bp3-popover-wrapper,
.bp3-popover-target {
display: block;
@@ -82,25 +84,22 @@ body.hide-scrollbar .Pane2{
max-width: 300px;
}
.bp3-timezone-picker{
.bp3-button{
[icon="caret-down"] {
.bp3-timezone-picker {
.bp3-button {
[icon='caret-down'] {
display: none;
}
}
}
.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{
.bp3-progress-bar.bp3-intent-primary .bp3-progress-meter {
background-color: #0066ff;
}
.bp3-overlay-backdrop{
background-color: rgba(0,10,30, .7);
.bp3-overlay-backdrop {
background-color: rgba(0, 10, 30, 0.7);
}
.ReactVirtualized__Collection {
}
@@ -176,4 +175,4 @@ body.hide-scrollbar .Pane2{
/* List default theme */
.ReactVirtualized__List {
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,28 @@
.dialog--user-form {
width: 450px;
.bp3-form-group {
margin-bottom: 15px;
}
.bp3-dialog-body {
margin-bottom: 30px;
.bp3-form-group.bp3-inline {
.bp3-label {
min-width: 140px;
}
.bp3-form-content {
width: 250px;
}
}
.bp3-dialog-header {
height: 170px;
}
}
.bp3-dialog-footer {
.bp3-button {
min-width: 75px;
}
}
}

View File

@@ -0,0 +1,31 @@
@font-face {
font-family: Noto Sans;
src: local('Noto Sans'), url('../fonts/NotoSans-SemiBold.woff') format('woff');
font-style: normal;
font-weight: 600;
font-display: swap;
}
@font-face {
font-family: Noto Sans;
src: local('Noto Sans'), url('../fonts/NotoSans-Regular.woff') format('woff');
font-style: normal;
font-weight: 400;
font-display: swap;
}
@font-face {
font-family: Noto Sans;
src: local('Noto Sans'), url('../fonts/NotoSans-Medium.woff') format('woff');
font-style: normal;
font-weight: 500;
font-display: swap;
}
@font-face {
font-family: Noto Sans;
src: local('Noto Sans'), url('../fonts/NotoSans-Black.woff') format('woff');
font-style: normal;
font-weight: 900;
font-display: swap;
}

View File

@@ -3,7 +3,7 @@
$ns: bp3;
$pt-popover-box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.02),
0 2px 4px rgba(16, 22, 26, 0.1), 0 8px 24px rgba(16, 22, 26, 0.1);
0 2px 4px rgba(16, 22, 26, 0.1), 0 8px 24px rgba(16, 22, 26, 0.1);
$blue1: #0069ff;
$blue2: #0052ff;
@@ -24,9 +24,9 @@ $button-box-shadow-active: 0 0 0 !default;
$button-intent-box-shadow: 0 0 0 !default;
$button-intent-box-shadow-active: 0 0 0 !default;
$button-background-color-disabled: #E9ECEF !default;
$button-background-color: #E6EFFB !default;
$button-background-color-hover: #CFDCEE !default;
$button-background-color-disabled: #e9ecef !default;
$button-background-color: #e6effb !default;
$button-background-color-hover: #cfdcee !default;
$sidebar-background: #01115e;
$sidebar-text-color: #fff;