Rename css class "info" to "info-box" and add it as generic box
refs #8274
This commit is contained in:
parent
4a245ed8e0
commit
23c36898da
|
@ -55,7 +55,7 @@ class AuthenticationPage extends Form
|
||||||
'ViewHelper',
|
'ViewHelper',
|
||||||
array(
|
array(
|
||||||
'HtmlTag',
|
'HtmlTag',
|
||||||
array('tag' => 'p', 'class' => 'icon-info info')
|
array('tag' => 'p', 'class' => 'icon-info info-box')
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
@ -203,3 +203,9 @@ table.benchmark {
|
||||||
[class^="icon-"]:before, [class*=" icon-"]:before {
|
[class^="icon-"]:before, [class*=" icon-"]:before {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.info-box {
|
||||||
|
padding: 0.5em;
|
||||||
|
border: 1px solid lightgrey;
|
||||||
|
background-color: infobackground;
|
||||||
|
}
|
||||||
|
|
|
@ -220,14 +220,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#setup_authentication_type p.info {
|
#setup_authentication_type p.info-box em {
|
||||||
padding: 0.5em;
|
text-decoration: underline;
|
||||||
border: 1px solid lightgrey;
|
|
||||||
background-color: infobackground;
|
|
||||||
|
|
||||||
em {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#setup_ldap_discovery_confirm table {
|
#setup_ldap_discovery_confirm table {
|
||||||
|
|
Loading…
Reference in New Issue