Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/theming/css/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@
--clickable-area-small: 24px;
--default-grid-baseline: 4px;

--header-height: 50px;
--header-menu-item-height: 44px;
--header-height: 42px;
--header-menu-item-height: 34px;
/* An alpha mask to be applied to all icons on the navigation bar (header menu).
* Icons are have a size of 20px but usually we use MDI which have a content of 16px so 2px padding top bottom,
* for better gradient we must at first begin at those 2px (10% of height) as start and stop positions.
Expand Down
4 changes: 2 additions & 2 deletions apps/theming/lib/Themes/DefaultTheme.php
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ public function getCSSVariables(): array {
'--default-grid-baseline' => '4px',

// header / navigation bar
'--header-height' => '50px',
'--header-menu-item-height' => '44px',
'--header-height' => '42px',
'--header-menu-item-height' => '34px',
/* An alpha mask to be applied to all icons on the navigation bar (header menu).
* Icons are have a size of 20px but usually we use MDI which have a content of 16px so 2px padding top bottom,
* for better gradient we must at first begin at those 2px (10% of height) as start and stop positions.
Expand Down
2 changes: 1 addition & 1 deletion core/css/apps.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion core/css/mobile.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions core/css/server.css

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions core/css/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,13 @@ $animation-quick: 100ms;
$animation-slow: 300ms;

// various structure data
$header-height: 50px;
$header-height: 42px;
$navigation-width: 300px;
$sidebar-min-width: 300px;
$sidebar-max-width: 500px;
$list-min-width: 200px;
$list-max-width: 300px;
$header-menu-item-height: 44px;
$header-menu-profile-item-height: 66px;
$header-menu-item-height: 34px;

// mobile. Keep in sync with core/js/js.js
$breakpoint-mobile: 1024px;
Loading