mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
46 lines
636 B
SCSS
46 lines
636 B
SCSS
@import "../../themes/ionic.globals";
|
|
|
|
// Title
|
|
// --------------------------------------------------
|
|
|
|
:host {
|
|
/**
|
|
* @prop --color: Text color of the title
|
|
*/
|
|
--color: initial;
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
align-items: center;
|
|
|
|
transform: translateZ(0);
|
|
|
|
color: var(--color);
|
|
}
|
|
|
|
:host(.ion-color) {
|
|
color: #{current-color(base)};
|
|
}
|
|
|
|
.toolbar-title {
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
|
|
// Small Title
|
|
// --------------------------------------------------
|
|
|
|
:host(.title-small) .toolbar-title {
|
|
white-space: normal;
|
|
}
|