mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
72 lines
2.5 KiB
SCSS
72 lines
2.5 KiB
SCSS
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
$ibo-attachment--datatable--icon-preview--max-height: 44px !default;
|
|
$ibo-attachment--datatable--icon-preview--max-width: $ibo-attachment--datatable--icon-preview--max-height !default;
|
|
|
|
$ibo-attachment--drag-in--border: 2px $ibo-color-grey-400 dashed !default;
|
|
$ibo-attachment--upload-file--drop-zone-hint--max-height: 200px !default;
|
|
$ibo-attachment--upload-file--drop-zone-hint--margin: 22px $ibo-spacing-0 !default;
|
|
$ibo-attachment--upload-file--drop-zone-hint--color: $ibo-color-grey-700 !default;
|
|
$ibo-attachment--upload-file--drop-zone-hint--image--margin-bottom: 5px !default;
|
|
|
|
$ibo-attachment--tab-header--drop-in--background-color: $ibo-color-blue-200 !default;
|
|
$ibo-attachment--tab-header--drop-in--color: $ibo-color-blue-800 !default;
|
|
$ibo-attachment--tab-header--drop-in--icon--padding-left: $ibo-spacing-300 !default;
|
|
$ibo-attachment--tab-header--drop-in--icon--content: "\f382" !default;
|
|
$ibo-attachment--tab-header--drop-in--icon--color: $ibo-color-blue-600 !default;
|
|
|
|
#ibo-attachment--upload-file{
|
|
.ibo-input-file-select--container{
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.ibo-attachment--datatable--icon-preview{
|
|
max-height: $ibo-attachment--datatable--icon-preview--max-height;
|
|
max-width: $ibo-attachment--datatable--icon-preview--max-width;
|
|
}
|
|
.ibo-attachment--datatable tbody tr td {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.ibo-attachment--upload-file--drop-zone-hint{
|
|
display: none;
|
|
}
|
|
|
|
.ibo-drag-in {
|
|
border: $ibo-attachment--drag-in--border;
|
|
.ibo-attachment--upload-file--drop-zone-hint {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
max-height: $ibo-attachment--upload-file--drop-zone-hint--max-height;
|
|
margin: $ibo-attachment--upload-file--drop-zone-hint--margin;
|
|
color: $ibo-attachment--upload-file--drop-zone-hint--color;
|
|
> svg{
|
|
margin-bottom: $ibo-attachment--upload-file--drop-zone-hint--image--margin-bottom;
|
|
}
|
|
}
|
|
|
|
#ibo-attachment--upload-file--upload-button-container {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.ibo-tab-container--tab-header{
|
|
&.ibo-drag-in{
|
|
border: none;
|
|
background-color: $ibo-attachment--tab-header--drop-in--background-color;
|
|
color: $ibo-attachment--tab-header--drop-in--color;
|
|
> a::after{
|
|
content: $ibo-attachment--tab-header--drop-in--icon--content;
|
|
@extend %fa-solid-base;
|
|
padding-left: $ibo-attachment--tab-header--drop-in--icon--padding-left;
|
|
color: $ibo-attachment--tab-header--drop-in--icon--color;
|
|
}
|
|
}
|
|
} |