diff options
author | Francesc Pinyol Margalef <francesc.pinyol.m@gmail.com> | 2013-12-21 13:37:33 +0100 |
---|---|---|
committer | Francesc Pinyol Margalef <francesc.pinyol.m@gmail.com> | 2013-12-21 13:37:33 +0100 |
commit | 095c6b25885ce3d22eedba8cdb98f1fd7e8708a5 (patch) | |
tree | 5bfc768996b3ddec185abeb02b602b48b14d10db /perl-install/share/diskdrake.css | |
parent | df60191bdbddfa7c8e5bd11a2578aae6740963c0 (diff) | |
parent | f76dc0931e47338aa9c7db257d28e5015d8a2f47 (diff) | |
download | drakx-095c6b25885ce3d22eedba8cdb98f1fd7e8708a5.tar drakx-095c6b25885ce3d22eedba8cdb98f1fd7e8708a5.tar.gz drakx-095c6b25885ce3d22eedba8cdb98f1fd7e8708a5.tar.bz2 drakx-095c6b25885ce3d22eedba8cdb98f1fd7e8708a5.tar.xz drakx-095c6b25885ce3d22eedba8cdb98f1fd7e8708a5.zip |
Merge branch 'master' of git://git.mageia.org/software/drakx
Diffstat (limited to 'perl-install/share/diskdrake.css')
-rw-r--r-- | perl-install/share/diskdrake.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/perl-install/share/diskdrake.css b/perl-install/share/diskdrake.css new file mode 100644 index 000000000..186b605bd --- /dev/null +++ b/perl-install/share/diskdrake.css @@ -0,0 +1,68 @@ +/* FIXME: to be inherited by all other styles */ +#PART* { + /* FIXME: replace by appropriate font: + fontset = "-*-*-medium-r-normal-*-8-*-*-*-*-*-iso8859-1,*-r-*" + => font: "8" */ + padding: 1px; + color: #000000; +} + +#PART_ext2, #PART_ext3, #PART_ext4 { + background-color: #ff0000; + background-image: none; +} +#PART_ext2:hover:hover, #PART_ext3:hover, #PART_ext4:hover { + background-color: #e60000; +} +#PART_ext2:active:active, #PART_ext3:active, #PART_ext4:active { + background-color: #e60000; +} + +#PART_xfs { + background-color: #ff9900; + background-image: none; +} +#PART_xfs:hover { + background-color: #e66600; +} +#PART_xfs:active { + background-color: #e69900; +} + +#PART_swap { + background-color: #66cc00; + background-image: none; +} +#PART_swap:active, #PART_swap:hover { + background-color: #66b700; +} + +#PART_vfat, #PART_ntfs, #PART_ntfs-3g { + background-color: #00b7ff; + background-image: none; +} +#PART_vfat:hover, #PART_ntfs:hover, #PART_ntfs-3g:hover { + background-color: #0099e6; +} +#PART_vfat:active, #PART_ntfs:active, #PART_ntfs-3g:active { + background-color: #0099e6; +} + +#PART_empty { + background-color: #ffffff; + background-image: none; +} +#PART_empty:hover, #PART_empty:active { + background-color: #e6e6e6; +} + +#PART_other { + background-color: #929eab; + background-image: none; +} + +#PART_new { + background-color: #1f429c; + background-image: none; + color: #ffffff; +} |