2017-04-13 17:59:37 +01:00
|
|
|
/**
|
|
|
|
* Workspace pane styles
|
|
|
|
*
|
|
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
|
|
* @copyright Crown Copyright 2017
|
|
|
|
* @license Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2017-04-24 23:59:35 +01:00
|
|
|
:root {
|
2018-06-09 10:43:36 +01:00
|
|
|
--title-height: 48px;
|
2019-03-21 12:31:01 +00:00
|
|
|
--tab-height: 40px;
|
2017-04-24 23:59:35 +01:00
|
|
|
}
|
2017-04-13 17:59:37 +01:00
|
|
|
|
|
|
|
.title {
|
2018-06-09 10:43:36 +01:00
|
|
|
padding: 8px;
|
2018-06-19 00:55:08 +01:00
|
|
|
padding-left: 12px;
|
2018-06-09 10:43:36 +01:00
|
|
|
padding-right: 12px;
|
2017-04-24 23:59:35 +01:00
|
|
|
height: var(--title-height);
|
|
|
|
border-bottom: 1px solid var(--primary-border-colour);
|
|
|
|
font-weight: var(--title-weight);
|
2018-06-09 10:43:36 +01:00
|
|
|
font-size: var(--title-size);
|
2017-04-24 23:59:35 +01:00
|
|
|
color: var(--title-colour);
|
2017-05-07 01:13:47 +01:00
|
|
|
background-color: var(--title-background-colour);
|
2018-06-19 00:55:08 +01:00
|
|
|
line-height: calc(var(--title-height) - 14px);
|
2017-04-13 17:59:37 +01:00
|
|
|
}
|
|
|
|
|
2018-07-26 17:47:14 +00:00
|
|
|
.title>span,
|
|
|
|
.title>.btn {
|
|
|
|
margin-top: -4px;
|
|
|
|
}
|
|
|
|
|
2017-04-13 17:59:37 +01:00
|
|
|
.list-area {
|
|
|
|
position: absolute;
|
2017-04-24 23:59:35 +01:00
|
|
|
top: var(--title-height);
|
2017-04-13 17:59:37 +01:00
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2017-04-15 20:46:57 +01:00
|
|
|
}
|
2017-12-18 20:39:55 +00:00
|
|
|
|
2018-07-15 13:25:44 +01:00
|
|
|
.io-card.card {
|
2017-12-18 20:39:55 +00:00
|
|
|
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
|
|
|
|
transition: 0.3s;
|
|
|
|
width: 400px;
|
|
|
|
height: 150px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
font-family: var(--primary-font-family);
|
|
|
|
color: var(--primary-font-colour);
|
|
|
|
line-height: 30px;
|
|
|
|
background-color: var(--primary-background-colour);
|
2018-07-13 12:10:24 +00:00
|
|
|
flex-direction: row;
|
2019-03-20 10:52:00 +00:00
|
|
|
padding-left: 10px;
|
2017-12-18 20:39:55 +00:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:44 +01:00
|
|
|
.io-card.card:hover {
|
2017-12-18 20:39:55 +00:00
|
|
|
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
|
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:44 +01:00
|
|
|
.io-card.card>img {
|
2017-12-18 20:39:55 +00:00
|
|
|
float: left;
|
2019-03-20 10:40:59 +00:00
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
max-width: 128px;
|
|
|
|
max-height: 128px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-top: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-bottom: auto;
|
2019-03-20 10:52:00 +00:00
|
|
|
padding: 0px;
|
2019-03-20 10:40:59 +00:00
|
|
|
|
2017-12-18 20:39:55 +00:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:44 +01:00
|
|
|
.io-card.card .card-body .close {
|
2017-12-18 20:39:55 +00:00
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
2018-07-13 12:10:24 +00:00
|
|
|
top: 4px;
|
2017-12-18 20:39:55 +00:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:44 +01:00
|
|
|
.io-card.card .card-body {
|
2017-12-18 20:39:55 +00:00
|
|
|
float: left;
|
|
|
|
padding: 16px;
|
|
|
|
width: 250px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
user-select: text;
|
2017-12-27 01:52:41 +00:00
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:44 +01:00
|
|
|
.io-card.card .card-body>.btn {
|
2018-07-13 12:10:24 +00:00
|
|
|
margin-bottom: 5px;
|
2017-12-27 01:52:41 +00:00
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2018-07-15 13:25:44 +01:00
|
|
|
.io-card.card input[type=number] {
|
2017-12-27 01:52:41 +00:00
|
|
|
padding-right: 6px;
|
|
|
|
padding-left: 6px;
|
|
|
|
}
|
2019-03-09 06:25:27 +00:00
|
|
|
|
|
|
|
#files .card-header .float-right a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|