freeipa/install/ui/less/layout.less
Pavel Vomacka 06a9a84876 Refactored certificate view and remove hold dialog
Removed old layout created using html tables. Now table layout is made by div
and modern css styling.

https://fedorahosted.org/freeipa/ticket/5381

Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
2016-06-29 15:41:58 +02:00

27 lines
396 B
Plaintext

#simple-container .content {
height: 100%;
}
#container {
background-color: white;
}
/* --- Table layout created by CSS --- */
.table-layout {
display: table;
}
.table-row {
display: table-row;
.table-cell {
display: table-cell;
vertical-align: middle;
}
.table-head {
padding: 0 5px 0 0;
}
}
.break-words {
word-break: break-all;
}