diff options
author | Xan Lopez <xan@igalia.com> | 2012-03-28 04:15:47 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-28 04:15:47 +0800 |
commit | f1b56402b69be4b7f0507c7154765d7ff8260ef2 (patch) | |
tree | a15d7d44b13a7ca3ce3a20459a272d3c371d995d /src/epiphany.css | |
parent | 98e31b7886bad0eae162ec7c6513a1d20f306727 (diff) | |
download | gsoc2013-epiphany-f1b56402b69be4b7f0507c7154765d7ff8260ef2.tar gsoc2013-epiphany-f1b56402b69be4b7f0507c7154765d7ff8260ef2.tar.gz gsoc2013-epiphany-f1b56402b69be4b7f0507c7154765d7ff8260ef2.tar.bz2 gsoc2013-epiphany-f1b56402b69be4b7f0507c7154765d7ff8260ef2.tar.lz gsoc2013-epiphany-f1b56402b69be4b7f0507c7154765d7ff8260ef2.tar.xz gsoc2013-epiphany-f1b56402b69be4b7f0507c7154765d7ff8260ef2.tar.zst gsoc2013-epiphany-f1b56402b69be4b7f0507c7154765d7ff8260ef2.zip |
Make the resources depend on the actual UI files
Otherwise we won't update them if the UI files change. To do this we
need to move them from data/ui/ to src/, which is not great. Things
would be easier with non-recursive Makefiles.
Diffstat (limited to 'src/epiphany.css')
-rw-r--r-- | src/epiphany.css | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/epiphany.css b/src/epiphany.css new file mode 100644 index 000000000..b3b9757e3 --- /dev/null +++ b/src/epiphany.css @@ -0,0 +1,49 @@ +#ephy-status-frame { + border-style: solid; + border-width: 1px; + padding: 4px; +} + +#ephy-tab-close-button { + -GtkButton-default-border: 0; + -GtkButton-default-outside-border: 0; + -GtkButton-inner-border: 0; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + margin: 0; + padding: 0; +} + +.primary-toolbar.toolbar { + padding-left: 0; + padding-right: 0; +} + +#ephy-progress-bar { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 3px; + -GtkProgressBar-min-horizontal-bar-height: 3px; + padding: 0; +} + +.progressbar#ephy-progress-bar { + border-style: none; + background-color: @theme_selected_bg_color; + background-image: none; + border-radius: 0; + -adwaita-progressbar-pattern: none; +} + +GtkProgressBar#ephy-progress-bar.trough { + padding: 0; + border-image: none; + border-style: none; + border-width: 0; + background-image: none; + background-color: transparent; + border-radius: 0; +} + +#ephy-overlay { + background-color: rgba(0,0,0,0); +} |