diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-12-08 23:49:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-08 23:49:52 +0100 |
commit | 79ed0d105dc3e5b8fde5e4d8a1ae0f183834349e (patch) | |
tree | 7ad733e5486dfd9c4df642be65582af669a07b84 /tests/acceptance/features/app-theming.feature | |
parent | 3f34861d586e063238a1f9824eb0143f9f7a0c48 (diff) | |
parent | 81f34e224c0e28ebc37ecd9bd7ea7e607fb98486 (diff) | |
download | nextcloud-server-79ed0d105dc3e5b8fde5e4d8a1ae0f183834349e.tar.gz nextcloud-server-79ed0d105dc3e5b8fde5e4d8a1ae0f183834349e.zip |
Merge pull request #7426 from nextcloud/Abijeet-master
Allows adding of hex color to the theme-color
Diffstat (limited to 'tests/acceptance/features/app-theming.feature')
-rw-r--r-- | tests/acceptance/features/app-theming.feature | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/acceptance/features/app-theming.feature b/tests/acceptance/features/app-theming.feature index 9f5ac3f6a42..375e2bc1cae 100644 --- a/tests/acceptance/features/app-theming.feature +++ b/tests/acceptance/features/app-theming.feature @@ -5,19 +5,19 @@ Feature: app-theming And I visit the settings page And I open the "Theming" section And I see that the color selector in the Theming app has loaded - And I see that the header color is "0082C9" - When I set the "Color" parameter in the Theming app to "C9C9C9" + And I see that the header color is "#0082C9" + When I set the "Color" parameter in the Theming app to "#C9C9C9" Then I see that the parameters in the Theming app are eventually saved - And I see that the header color is "C9C9C9" + And I see that the header color is "#C9C9C9" Scenario: resetting the color updates the header color Given I am logged in as the admin And I visit the settings page And I open the "Theming" section And I see that the color selector in the Theming app has loaded - And I set the "Color" parameter in the Theming app to "C9C9C9" + And I set the "Color" parameter in the Theming app to "#C9C9C9" And I see that the parameters in the Theming app are eventually saved - And I see that the header color is "C9C9C9" + And I see that the header color is "#C9C9C9" When I reset the "Color" parameter in the Theming app to its default value Then I see that the parameters in the Theming app are eventually saved - And I see that the header color is "0082C9" + And I see that the header color is "#0082C9" |