PromucFlow_constructor/app/client/src/index.css

133 lines
2.7 KiB
CSS
Raw Normal View History

2019-12-16 08:49:10 +00:00
@import "~normalize.css";
@import "~@blueprintjs/core/lib/css/blueprint.css";
@import "~@blueprintjs/icons/lib/css/blueprint-icons.css";
2020-01-02 13:36:35 +00:00
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
@import '../node_modules/@syncfusion/ej2-calendars/styles/material.css';
@import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
@import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
@import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
@import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
@import "../node_modules/@syncfusion/ej2-react-grids/styles/material.css";
2019-01-21 15:11:10 +00:00
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2019-08-20 13:19:19 +00:00
background: #efefef;
2019-01-21 15:11:10 +00:00
}
body.fontLoaded {
2019-09-06 11:40:00 +00:00
font-family: "DM Sans", sans-serif;
}
2019-01-21 15:11:10 +00:00
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
2019-11-21 10:52:49 +00:00
* {
outline: none !important;
}
2019-11-21 10:52:49 +00:00
div.bp3-select-popover .bp3-popover-content {
padding: 0;
}
span.bp3-popover-target {
display: block;
}
2019-11-21 10:52:49 +00:00
div.bp3-popover-arrow {
display:none;
2019-12-03 09:21:06 +00:00
}
.bp3-button.bp3-loading{
cursor: default !important;
}
2020-02-06 07:01:25 +00:00
/* .bp3-intent-primary:not(.bp3-icon):not(:hover), input:checked ~ span.bp3-control-indicator {
2020-01-28 08:21:22 +00:00
background: #29CCA3 !important;
box-shadow: none !important;
}
.bp3-intent-primary {
border-radius: 4px !important;
2020-02-06 07:01:25 +00:00
} */
2020-01-28 08:21:22 +00:00
2019-12-03 09:21:06 +00:00
.pace {
-webkit-pointer-events: none;
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.pace-inactive {
display: none;
}
/* The color of the loader is defined by the theme
TODO(abhinav): move this into the app to wrap
*/
.pace > div.pace-progress {
background: #29CCA3;
position: fixed;
z-index: 2000;
top: 0;
right: 100%;
width: 100%;
height: 5px;
}
.App {
text-align: center;
}
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 40vmin;
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #61dafb;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
2020-02-07 02:32:52 +00:00
.display-none {
display: none;
2020-02-18 10:41:52 +00:00
}
.Toastify__toast {
padding: 0 !important;
border-radius: 4px !important;
}
.Toastify__toast-body {
margin: 0 !important;
}