From 040cfc6471dbc7325ead113a63e2cd69d7d49fe9 Mon Sep 17 00:00:00 2001 From: Luzifr Date: Wed, 12 Oct 2011 15:52:35 +0200 Subject: [PATCH] Special background for installation --- wcfsetup/install/files/acp/style/style.css | 37 +++++++++++++++++----- 1 file changed, 29 insertions(+), 8 deletions(-) diff --git a/wcfsetup/install/files/acp/style/style.css b/wcfsetup/install/files/acp/style/style.css index d2d8057ce0..75c59d7a1d 100644 --- a/wcfsetup/install/files/acp/style/style.css +++ b/wcfsetup/install/files/acp/style/style.css @@ -64,14 +64,6 @@ q:after { text-overflow: ellipsis; } -body { - font-family: 'Trebuchet MS', Arial, sans-serif; - font-size: 80%; - color: #666; - line-height: 1; - background-color: #29374a; -} - img { vertical-align: middle !important; } @@ -113,6 +105,35 @@ hr { margin-top: 13px; } +/* ############## Body ############## */ + +/* Globals */ + +body { + font-family: 'Trebuchet MS', Arial, sans-serif; + font-size: 80%; + color: #666; + line-height: 1; + background-color: #29374a; +} + +/* Special */ + +body#tplWCFInstaller {background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, .05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, .05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%, transparent 75%, transparent); + background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, .05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, .05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%, transparent 75%, transparent); + background-image: linear-gradient(-45deg, rgba(255, 255, 255, .05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%, transparent 75%, transparent); + + -webkit-background-size: 50px 50px; + -moz-background-size: 50px 50px; + -ms-background-size: 50px 50px; + -o-background-size: 50px 50px; + background-size: 50px 50px; + + background-position: left top; + background-repeat: repeat; +} /* ############## Page Header ############## */ -- 2.20.1