2022-03-31 00:26:08 +02:00
|
|
|
div.subpage_uporabniki {
|
|
|
|
|
|
|
|
.data_table_top_holder{
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0 14px 16px 14px;
|
|
|
|
padding: 6px 16px;
|
|
|
|
|
|
|
|
background: $light-gray;
|
|
|
|
border: 1px solid $gray;
|
|
|
|
border-radius: 2px;
|
|
|
|
|
|
|
|
font-size: 14px !important;
|
|
|
|
|
|
|
|
.osnova {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-right: 8px;
|
|
|
|
margin-right: 8px;
|
|
|
|
border-right: 1px solid $dark-gray;
|
|
|
|
&.no_border {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
select,
|
|
|
|
input {
|
|
|
|
padding: 3px 5px;
|
|
|
|
margin: 0 0 0 8px;
|
|
|
|
width: 123px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataSettingsBasic{
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
margin-right: 8px;
|
|
|
|
padding-right: 8px;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
button.white-blue{
|
|
|
|
height: 28px;
|
|
|
|
width: 140px;
|
|
|
|
min-width: auto;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
line-height: 12px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $black;
|
|
|
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
|
|
|
&.border_blue {
|
|
|
|
border-color: $blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faicon:before{
|
|
|
|
margin-right: 8px;
|
|
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
color: $blue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Alignment na konec
|
|
|
|
#end {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
}
|
2022-04-28 23:41:35 +02:00
|
|
|
|
|
|
|
//Pregled in dodajanje
|
|
|
|
|
|
|
|
div.users_list_box {
|
|
|
|
padding: 0 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.add_user {
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
|
|
|
div#dodajanje_horizontal {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
width: fit-content;
|
|
|
|
align-self: center;
|
|
|
|
|
2022-05-04 04:13:57 +02:00
|
|
|
div#dodajanje_left {
|
|
|
|
padding-right: 32px;
|
|
|
|
margin-right: 32px;
|
|
|
|
border-right: 1px solid $gray;
|
|
|
|
}
|
|
|
|
|
2022-04-28 23:41:35 +02:00
|
|
|
div.add_user_fields_wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: fit-content;
|
|
|
|
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.button_holder {
|
|
|
|
margin: 32px 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting_holder {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
&:last-of-type {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-05-04 04:13:57 +02:00
|
|
|
&.horizontal {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
gap: 16px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
.setting_holder {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
}
|
2022-04-28 23:41:35 +02:00
|
|
|
|
|
|
|
select.dropdown {
|
|
|
|
width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.bottom4 {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-07 00:41:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
table#unconfirmed_mail_user_list {
|
|
|
|
border-left: 1px solid $gray;
|
|
|
|
border-right: 1px solid $gray;
|
2022-03-31 00:26:08 +02:00
|
|
|
}
|