2016-02-23 13:20:59 +01:00
|
|
|
.tabbed-view {
|
2018-07-08 07:39:25 -07:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
2018-10-28 11:31:42 +01:00
|
|
|
flex-grow: 1;
|
2016-02-24 10:32:22 +01:00
|
|
|
|
2018-07-08 07:39:25 -07:00
|
|
|
&.tabbed-view--new {
|
2018-10-28 11:31:42 +01:00
|
|
|
padding: 0 0 0 0;
|
2018-07-08 07:39:25 -07:00
|
|
|
height: 100%;
|
2018-06-19 21:25:57 +02:00
|
|
|
}
|
2016-02-23 13:20:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabbed-view-header {
|
2017-12-03 16:22:59 +01:00
|
|
|
box-shadow: $page-header-shadow;
|
|
|
|
|
border-bottom: 1px solid $page-header-border-color;
|
2019-03-20 09:48:19 +01:00
|
|
|
padding: 0 $space-md;
|
2016-02-23 13:20:59 +01:00
|
|
|
@include clearfix();
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-23 13:29:26 +01:00
|
|
|
.tabbed-view-title {
|
|
|
|
|
float: left;
|
2019-03-27 08:48:24 +01:00
|
|
|
padding-top: $space-sm;
|
2019-02-19 15:41:35 +01:00
|
|
|
margin: 0 $spacer * 3 0 0;
|
2016-02-23 13:29:26 +01:00
|
|
|
}
|
|
|
|
|
|
2016-02-23 13:20:59 +01:00
|
|
|
.tabbed-view-close-btn {
|
|
|
|
|
float: right;
|
|
|
|
|
margin: 0;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: none;
|
2017-11-30 08:18:23 +01:00
|
|
|
padding: $tabs-padding;
|
2016-11-16 11:08:38 -05:00
|
|
|
color: $text-color;
|
2016-02-23 13:20:59 +01:00
|
|
|
i {
|
|
|
|
|
font-size: 120%;
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
2018-04-03 09:53:14 +02:00
|
|
|
color: $text-color-strong;
|
2016-02-23 13:20:59 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabbed-view-body {
|
2019-02-19 15:41:35 +01:00
|
|
|
padding: $spacer * 2 $spacer $spacer $spacer;
|
2018-07-08 12:29:23 -07:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex: 1;
|
2017-08-17 18:50:46 +02:00
|
|
|
|
|
|
|
|
&--small {
|
|
|
|
|
min-height: 0px;
|
|
|
|
|
padding-bottom: 0px;
|
|
|
|
|
}
|
2016-02-23 13:20:59 +01:00
|
|
|
}
|
|
|
|
|
|
2016-02-23 14:05:12 +01:00
|
|
|
.section-heading {
|
2018-12-13 16:02:14 +01:00
|
|
|
font-size: $font-size-md;
|
2019-03-27 08:48:24 +01:00
|
|
|
margin-bottom: $space-sm;
|
2016-02-23 14:05:12 +01:00
|
|
|
}
|