mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 19:40:25 +08:00
- restyle the page where user can add backups - responsive css fixes - add fontawesome and use them for face checkboxes, prepare to add more icons in the future with fa. font-awesome is licensed under the sil ofl 1.0, seems fine to me... any thoughts about that? - convert strange buttons "show advanced editor" and similar to fake checkboxes - reformat advanced options - fix simple editor gap when switching to advanced editor
15 lines
770 B
Text
15 lines
770 B
Text
/* FONT PATH
|
|
* -------------------------- */
|
|
|
|
@font-face {
|
|
font-family: 'FontAwesome';
|
|
src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
|
|
src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
|
|
url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
|
|
url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
|
|
url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
|
|
url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
|
|
// src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|