mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-30 10:47:08 -06:00
6a8eeff22d
To update install/ui/css/patternfly.css you should: 1. clone Bootstrap 3, Font-Awesome, Bootstrap-Select and PatternFly to the same parent directory as for FreeIPA (or use symlinks) 2. checkout desired versions of each component 3. run install/ui/util/make-patternfly.css 4. when changing component versions, copy xxx/variables.less from each component to install/ui/less/xxx/ so we can use the variables in our less files This commit contain css made from component versions as follows: - PatternFly: 0.2.5 - Bootstrap: 3.1.1 - Bootstrap-select: 1.4.3 - Font-Awesome: 4.0.3 Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
91 lines
2.6 KiB
Plaintext
91 lines
2.6 KiB
Plaintext
//
|
|
// Font face definitions are different than original RCUE ones.
|
|
// Here we supply only ttf variants. Additionally local variant can be
|
|
// used so it can save some load time in some browsers.
|
|
//
|
|
// This approach has a disadvantage:
|
|
// - fonts do not work in IE8 and below
|
|
//
|
|
// Advantage is that it nicely fits into Fedora packaging guidelines
|
|
//
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local('Open Sans'), local('OpenSans'),
|
|
url('../fonts/open-sans/OpenSans-Regular.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: normal;
|
|
font-weight: 300;
|
|
src: local('OpenSans-Light'), local('Open Sans Light'),
|
|
url('../fonts/open-sans/OpenSans-Light.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
src: local('Open Sans Semibold'), local('OpenSans-Semibold'),
|
|
url('../fonts/open-sans/OpenSans-Semibold.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
|
url('../fonts/open-sans/OpenSans-Bold.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: normal;
|
|
font-weight: 800;
|
|
src: local('Open Sans Extrabold'), local('OpenSans-Extrabold'),
|
|
url('../fonts/open-sans/OpenSans-ExtraBold.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: italic;
|
|
font-weight: 300;
|
|
src: local('Open Sans Light Italic'), local('OpenSansLight-Italic'),
|
|
url('../fonts/open-sans/OpenSans-LightItalic.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
src: local('Open Sans Italic'), local('OpenSans-Italic'),
|
|
url('../fonts/open-sans/OpenSans-Italic.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: italic;
|
|
font-weight: 600;
|
|
src: local('Open Sans Semibold Italic'), local('OpenSans-SemiboldItalic'),
|
|
url('../fonts/open-sans/OpenSans-SemiboldItalic.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: italic;
|
|
font-weight: 700;
|
|
src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'),
|
|
url('../fonts/open-sans/OpenSans-BoldItalic.ttf') format('truetype');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: italic;
|
|
font-weight: 800;
|
|
src: local('Open Sans Extrabold Italic'), local('OpenSans-ExtraboldItalic'),
|
|
url('../fonts/open-sans/OpenSans-ExtraBoldItalic.ttf') format('truetype');
|
|
}
|