update
This commit is contained in:
parent
454964518f
commit
4f35a2d72b
3 changed files with 11 additions and 3 deletions
|
@ -2,11 +2,15 @@
|
|||
/* DON'T EDIT THIS FILE; EDIT THE SCSS/SASS INSTEAD */
|
||||
/* ------------------------------------------------ */
|
||||
|
||||
/* ------------------------------------------------ */
|
||||
/* FOR DEBUGGING REASONS : DYNAMIC */
|
||||
/* ------------------------------------------------ */
|
||||
|
||||
//
|
||||
// Settings
|
||||
//
|
||||
|
||||
$type: backend;
|
||||
$type: dynamic;
|
||||
|
||||
$singleuser: false; // disables functions, that are not necessary if you are the only user (or at least as »frontend«)
|
||||
$nojavascript: false; // disables or corrects functions, that would not work with disabled javascript (e.g. throught content security policy)
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
padding: 22px;
|
||||
}
|
||||
.right.stackable.menu {
|
||||
@if $singleuser == true {
|
||||
@if $type == static {
|
||||
display: none;
|
||||
}
|
||||
.dropdown.item {
|
||||
|
|
|
@ -2,11 +2,15 @@
|
|||
/* DON'T EDIT THIS FILE; EDIT THE SCSS/SASS INSTEAD */
|
||||
/* ------------------------------------------------ */
|
||||
|
||||
/* ------------------------------------------------ */
|
||||
/* FOR DEBUGGING REASONS : STATIC */
|
||||
/* ------------------------------------------------ */
|
||||
|
||||
//
|
||||
// Settings
|
||||
//
|
||||
|
||||
$type: frontend;
|
||||
$type: static;
|
||||
|
||||
$singleuser: true; // disables functions, that are not necessary if you are the only user (or at least as »frontend«)
|
||||
$nojavascript: true; // disables or corrects functions, that would not work with disabled javascript (e.g. throught content security policy)
|
||||
|
|
Reference in a new issue