diff options
| author | Pavel Vomacka <pvomacka@redhat.com> | 2016-04-22 10:50:38 +0200 |
|---|---|---|
| committer | Petr Vobornik <pvoborni@redhat.com> | 2016-06-29 15:41:58 +0200 |
| commit | 06a9a84876345135acac933aca9ada235651997e (patch) | |
| tree | 2b2d8d06bb6153049c220ecf2287a343236fb7d9 /install/ui/less | |
| parent | e7a55ef30b252a616f50c58f99a538e9b090037c (diff) | |
| download | freeipa-06a9a84876345135acac933aca9ada235651997e.tar.gz freeipa-06a9a84876345135acac933aca9ada235651997e.tar.xz freeipa-06a9a84876345135acac933aca9ada235651997e.zip | |
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>
Diffstat (limited to 'install/ui/less')
| -rw-r--r-- | install/ui/less/layout.less | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/install/ui/less/layout.less b/install/ui/less/layout.less index bf425d4e7..1b7e0479c 100644 --- a/install/ui/less/layout.less +++ b/install/ui/less/layout.less @@ -4,4 +4,23 @@ #container { background-color: white; -}
\ No newline at end of file +} + +/* --- 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; +} |
