mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-04-30 19:29:22 +02:00

Layout is primarily changed to this because the old layout had obsolete javascript dependencies. I still want to make another default layout eventually, which is mobile friendly. This layout has a very nice character search widget though that looks for names realtime and displays them in a list beside the search.
26 lines
585 B
Plaintext
26 lines
585 B
Plaintext
// Bordered & Pulled
|
|
// -------------------------
|
|
|
|
.@{fa-css-prefix}-border {
|
|
padding: .2em .25em .15em;
|
|
border: solid .08em @fa-border-color;
|
|
border-radius: .1em;
|
|
}
|
|
|
|
.@{fa-css-prefix}-pull-left { float: left; }
|
|
.@{fa-css-prefix}-pull-right { float: right; }
|
|
|
|
.@{fa-css-prefix} {
|
|
&.@{fa-css-prefix}-pull-left { margin-right: .3em; }
|
|
&.@{fa-css-prefix}-pull-right { margin-left: .3em; }
|
|
}
|
|
|
|
/* Deprecated as of 4.4.0 */
|
|
.pull-right { float: right; }
|
|
.pull-left { float: left; }
|
|
|
|
.@{fa-css-prefix} {
|
|
&.pull-left { margin-right: .3em; }
|
|
&.pull-right { margin-left: .3em; }
|
|
}
|