Remove unused classes from base and add imports to main file
This commit is contained in:
parent
22ef4f4656
commit
f40435da4b
|
@ -51,11 +51,22 @@
|
||||||
"overrides/colors",
|
"overrides/colors",
|
||||||
"overrides/card",
|
"overrides/card",
|
||||||
"overrides/dropdown",
|
"overrides/dropdown",
|
||||||
|
"overrides/growls",
|
||||||
"overrides/inputs",
|
"overrides/inputs",
|
||||||
"overrides/links",
|
"overrides/links",
|
||||||
"overrides/list-group",
|
"overrides/list-group",
|
||||||
"overrides/minicolors",
|
"overrides/minicolors",
|
||||||
"overrides/navbar";
|
"overrides/navbar",
|
||||||
|
"overrides/sweet-alert";
|
||||||
|
|
||||||
|
/**
|
||||||
|
ELEMENTS
|
||||||
|
----------------------------------------------
|
||||||
|
Styles directly applied to HTML elements
|
||||||
|
*/
|
||||||
|
|
||||||
|
@import
|
||||||
|
"elements/body";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
COMPONENTS
|
COMPONENTS
|
||||||
|
@ -66,11 +77,23 @@
|
||||||
@import
|
@import
|
||||||
"components/avatars",
|
"components/avatars",
|
||||||
"components/buttons",
|
"components/buttons",
|
||||||
|
"components/container",
|
||||||
"components/entry",
|
"components/entry",
|
||||||
"components/jumbotron",
|
"components/jumbotron",
|
||||||
"components/notifications",
|
"components/notifications",
|
||||||
"components/profile",
|
"components/profile",
|
||||||
"components/question",
|
"components/question",
|
||||||
|
"components/smiles",
|
||||||
"components/userbox";
|
"components/userbox";
|
||||||
|
|
||||||
|
/**
|
||||||
|
UTILITIES
|
||||||
|
----------------------------------------------
|
||||||
|
Classes used for very specific cases
|
||||||
|
*/
|
||||||
|
|
||||||
|
@import
|
||||||
|
"utilities";
|
||||||
|
|
||||||
|
|
||||||
@import "base";
|
@import "base";
|
||||||
|
|
|
@ -1,94 +1,8 @@
|
||||||
/* all custom SCSS should go into here */
|
/* all custom SCSS should go into here */
|
||||||
|
|
||||||
body {
|
|
||||||
overflow-y: scroll;
|
|
||||||
word-wrap: break-word;
|
|
||||||
background-color: var(--background);
|
|
||||||
padding-top: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@import "scss/flags";
|
@import "scss/flags";
|
||||||
@import "scss/variable";
|
@import "scss/variable";
|
||||||
@import "scss/generic";
|
@import "scss/generic";
|
||||||
@import "scss/answerbox";
|
@import "scss/answerbox";
|
||||||
@import "scss/comments";
|
@import "scss/comments";
|
||||||
@import "scss/panel";
|
@import "scss/panel";
|
||||||
|
|
||||||
.j2-page {
|
|
||||||
padding-top: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ios-web-app {
|
|
||||||
padding-top: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
#load-more-btn {
|
|
||||||
margin-bottom: 1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.smiles {
|
|
||||||
margin-bottom: 7px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.j2-lh {
|
|
||||||
margin-top: 48px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.j2-up {
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
.j2-label {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.j2-table {
|
|
||||||
display: table;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input--center {
|
|
||||||
display: table-cell;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sweet-overlay {
|
|
||||||
z-index: 1031;
|
|
||||||
}
|
|
||||||
|
|
||||||
#create-group {
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.j2-delete {
|
|
||||||
color: theme-color('danger');
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.j2-navbar {
|
|
||||||
margin-bottom: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@include media-breakpoint-down(xs) {
|
|
||||||
.j2-col-reset {
|
|
||||||
padding-left: 0px;
|
|
||||||
padding-right: 0px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#growls.default{
|
|
||||||
top:64px;
|
|
||||||
right:10px
|
|
||||||
}
|
|
||||||
|
|
||||||
.links {
|
|
||||||
padding-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#profile {
|
|
||||||
border-color: transparent;
|
|
||||||
border-width: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.heading-about {
|
|
||||||
margin-top: 0px;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue