Skip to content
Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ module.exports = function(grunt) {
cwd: 'sass',
src: ['*.sass'],
dest: 'sphinx_rtd_theme/static/css',
ext: '.css'
ext: '.css_t'
}]
},
build: {
Expand All @@ -83,7 +83,7 @@ module.exports = function(grunt) {
cwd: 'sass',
src: ['*.sass'],
dest: 'sphinx_rtd_theme/static/css',
ext: '.css'
ext: '.css_t'
}]
}
},
Expand Down
2 changes: 1 addition & 1 deletion sass/_theme_layout.sass
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
padding: $gutter / 2
margin-bottom: $gutter / 2
z-index: $z-index-popover
background-color: $nav-search-background-color
background-color: #{$nav-search-background-color}
text-align: center
padding: $gutter / 2
display: block
Expand Down
2 changes: 1 addition & 1 deletion sass/_theme_variables.sass
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $menu-link-active: $white

// Navigation colors
$nav-background-color: $menu-background-color
$nav-search-background-color: $blue
$nav-search-background-color: "{{ theme_nav_search_background_color }}"
$nav-search-color: $section-background-color
$nav-link-color: $blue
$nav-link-color-visited: $purple
Expand Down
2 changes: 2 additions & 0 deletions sphinx_rtd_theme/theme.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[theme]
inherit = basic
stylesheet = css/theme.css
[colors]
nav_search_background_color = #2980B9

[options]
typekit_id = hiw1hhg
Expand Down