mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
56 lines
911 B
SCSS
56 lines
911 B
SCSS
|
|
// Material Design Toolbar
|
|
// --------------------------------------------------
|
|
|
|
$toolbar-md-height: 5.6rem !default;
|
|
$toolbar-md-title-font-size: 2rem !default;
|
|
$toolbar-md-button-font-size: 1.4rem !default;
|
|
|
|
|
|
.toolbar {
|
|
min-height: $toolbar-md-height;
|
|
|
|
button,
|
|
[button],
|
|
button.activated,
|
|
[button].activated {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
padding: 0 5px;
|
|
min-height: 32px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
button.icon-only,
|
|
[button].icon-only {
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
}
|
|
|
|
button icon,
|
|
[button] icon {
|
|
padding: 0;
|
|
min-width: 28px;
|
|
}
|
|
|
|
[menu-toggle],
|
|
[menu-toggle].activated {
|
|
padding: 0 10px;
|
|
min-width: 60px;
|
|
|
|
icon {
|
|
font-size: 2.4rem;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
ion-title {
|
|
font-size: $toolbar-md-title-font-size;
|
|
font-weight: 500;
|
|
}
|
|
|
|
ion-nav-items[primary] button:first-child {
|
|
margin-left: 0;
|
|
}
|