taiga-front/app/styles/core/elements.scss

87 lines
1.5 KiB
SCSS

// Elements
// Blockquotes
blockquote,
blockquote p {
line-height: 1.25rem;
}
blockquote {
margin: 0 0 20px;
padding: .5rem 1.25rem;
cite {
@extend %small;
display: block;
&::before {
content: '\2014 \0020';
}
}
}
// __Lists__
ul,
ol {
margin-bottom: 20px;
}
ul { list-style: none outside; }
ol { list-style: decimal; }
sup {
@extend %small;
vertical-align: super;
}
.icon {
vertical-align: middle;
}
.clickable {
cursor: pointer;
}
.not-clickable {
cursor: default;
}
.draggable {
cursor: move;
}
svg {
height: 1rem;
width: 1rem;
}
//Datepicker
.pika-single {
// scss-lint:disable ImportantRule
z-index: 999999;
.pika-title {
color: $grayer;
}
.is-selected {
.pika-button {
background: $primary;
border-radius: 0 !important;
box-shadow: inset 0 1px 3px $primary;
}
}
.is-today {
.pika-button {
color: $primary;
}
&.is-selected {
button {
color: $white;
}
}
}
.pika-button {
&:hover {
background: $primary-light !important; //Important added because plugin has it :S
border-radius: 0 !important; //Important added because plugin has it :S
box-shadow: inset 0 1px 3px $primary-light !important; //Important added because plugin has it :S
}
}
}