mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 16:10:02 -06:00
06a9a84876
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>
27 lines
396 B
Plaintext
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;
|
|
}
|