mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
4f328e3e45
rails in the script dir makes no sense, use binstubs or bundler instead
52 lines
726 B
SCSS
52 lines
726 B
SCSS
// --------------------------------------------------
|
|
// Generic helper classes
|
|
// --------------------------------------------------
|
|
|
|
// Floats
|
|
// --------------------------------------------------
|
|
|
|
.pull-left {
|
|
float: left;
|
|
}
|
|
|
|
.pull-right {
|
|
float: right;
|
|
}
|
|
|
|
// Element visibility
|
|
// --------------------------------------------------
|
|
|
|
.show {
|
|
display: block;
|
|
}
|
|
|
|
.hide,
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.invisible {
|
|
visibility: hidden;
|
|
}
|
|
|
|
// Affix
|
|
// --------------------------------------------------
|
|
|
|
.affix {
|
|
position: fixed;
|
|
}
|
|
|
|
// Contain floats
|
|
// --------------------------------------------------
|
|
|
|
.clearfix {
|
|
&:before,
|
|
&:after {
|
|
display: table;
|
|
content: " ";
|
|
}
|
|
&:after {
|
|
clear: both;
|
|
}
|
|
}
|