mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Datetime widget was transform from a simple text input to 3 separate inputs: - date with bootstrap-datepicker - hour - minute e.g.: Validity end [ 2015-05-18 ] [23]:[01] UTC Vendor [ abc ] Editation of seconds is not supported. https://fedorahosted.org/freeipa/ticket/4347 Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
121 lines
2.1 KiB
Plaintext
121 lines
2.1 KiB
Plaintext
|
|
|
|
#simple-container {
|
|
|
|
.global-activity-indicator {
|
|
|
|
bottom: auto;
|
|
height: auto;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
color: white;
|
|
width: 200px;
|
|
text-align: left;
|
|
|
|
.activity-row {
|
|
background-color: transparent;
|
|
display: block;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.activity-text {
|
|
padding: 0px;
|
|
}
|
|
|
|
.activity-text {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
.slider {
|
|
transition-property: all;
|
|
transition-duration: .5s;
|
|
transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
|
|
}
|
|
}
|
|
|
|
.global-activity-indicator {
|
|
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
text-shadow: none;
|
|
color: black;
|
|
font-size: 20px;
|
|
font-weight: 300;
|
|
height: 80px;
|
|
margin: auto;
|
|
text-align: center;
|
|
|
|
.activity-row {
|
|
display: inline-block;
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
padding: 7px;
|
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.activity-text {
|
|
padding: 3px 14px;
|
|
background-color: white;
|
|
}
|
|
}
|
|
|
|
.slider {
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
#simple-container .slider.closed,
|
|
.slider.closed {
|
|
max-height: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
// Rule Details Widget
|
|
|
|
.rule-enable-radio {
|
|
// make some space for 'Undo' button
|
|
line-height: @input-height-base + 2;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
// SSH Key Widget
|
|
|
|
.sshkey-status {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
// Make bootstrap tooltips wider
|
|
.tooltip-inner {
|
|
min-width: 200px;
|
|
max-width: 400px;
|
|
}
|
|
|
|
// Datetime widget
|
|
.input-group .form-control.datetime-hour,
|
|
.input-group .form-control.datetime-minutes {
|
|
width: 30px;
|
|
}
|
|
|
|
.datetime-widget .time-cnt {
|
|
width: 1%;
|
|
display: table-cell;
|
|
|
|
.input-group-addon {
|
|
border: 0;
|
|
background: transparent;
|
|
}
|
|
|
|
.time-separator {
|
|
padding-left: 2px;
|
|
padding-right: 2px;
|
|
}
|
|
}
|
|
|
|
.datetime-widget .time-group {
|
|
display: table;
|
|
padding-left: 10px
|
|
}
|
|
|
|
// workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=409254
|
|
tbody:empty { display: none; } |