2011-08-26 04:09:25 +02:00
|
|
|
/**
|
|
|
|
* File: typography.scss
|
|
|
|
*
|
|
|
|
* Contains the basic typography related styles for the admin interface.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-04-05 01:40:37 +02:00
|
|
|
.cms {
|
2011-08-26 04:09:25 +02:00
|
|
|
code {
|
|
|
|
font-family: 'Bitstream Vera Sans Mono','Courier', monospace;
|
|
|
|
}
|
2016-04-05 01:40:37 +02:00
|
|
|
}
|
2016-01-06 00:34:58 +01:00
|
|
|
|
2016-04-05 01:40:37 +02:00
|
|
|
// Used for long sentences where you would like to truncate them with an ellipsis (requires a set width)
|
|
|
|
.truncate {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2016-01-06 00:34:58 +01:00
|
|
|
|
2016-04-05 01:40:37 +02:00
|
|
|
// Used for breaking text so it doesn't run horizontally, useful for breaking URLs
|
|
|
|
.break-string {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2016-01-06 00:34:58 +01:00
|
|
|
|
2016-04-05 01:40:37 +02:00
|
|
|
// Standard table styles
|
|
|
|
.table {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: $spacer-y * 2;
|
|
|
|
border-top: 0;
|
2016-01-06 00:34:58 +01:00
|
|
|
|
2016-04-05 01:40:37 +02:00
|
|
|
thead th {
|
|
|
|
font-size: 12px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: normal;
|
|
|
|
border-bottom: 1px solid #bbb;
|
|
|
|
border-top: 0;
|
2011-08-26 04:09:25 +02:00
|
|
|
}
|
2016-04-05 01:40:37 +02:00
|
|
|
}
|