diff options
author | Go MAEDA <maeda@farend.jp> | 2024-09-22 03:51:57 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-09-22 03:51:57 +0000 |
commit | a4ecb6355a037b1d575629810fd90c1c91069b86 (patch) | |
tree | 3a3896255341ca7e019ac46659f4433c681d9f50 /app/assets | |
parent | b758cf37daa68eb2e60296c38d8fbd6e92967b3a (diff) | |
download | redmine-a4ecb6355a037b1d575629810fd90c1c91069b86.tar.gz redmine-a4ecb6355a037b1d575629810fd90c1c91069b86.zip |
Improve header design with gradient background (#41266).
Patch by Go MAEDA (user:maeda).
git-svn-id: https://svn.redmine.org/redmine/trunk@23067 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/application.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index cf6cb48cd..a07ffdd76 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -44,7 +44,14 @@ pre, code {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace;} #account {float:right;} -#header {min-height:5.3em;margin:0;background-color:#628DB6;color:#f8f8f8; padding: 4px 16px 20px 16px; position:relative;} +#header { + min-height :5.3em; + margin: 0; + background: linear-gradient(180deg, #628DB6 30%, #356D92); + color: #f8f8f8; + padding: 4px 16px 20px 16px; + position: relative; +} #header a {color:#f8f8f8;} #header h1 { overflow: hidden; text-overflow: ellipsis; white-space: nowrap;} #header h1 .breadcrumbs { display:block; font-size: .5em; font-weight: normal; } |