summaryrefslogtreecommitdiffstats
path: root/apps/theming/css
Commit message (Collapse)AuthorAgeFilesLines
* Fix layout of alternative login buttonsMorris Jobke2017-09-061-4/+10
| | | | | | * fixes #6367 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Cleanup theming styles to fit the new login pageJulius Härtl2017-09-041-32/+25
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Use separate element color in themingJulius Härtl2017-09-041-5/+6
| | | | | | This way we can use a grey color when the primary color is to bright Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Change invertion threshold to 55%Julius Härtl2017-09-021-1/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Set primary action button color to same as theming colorJan-Christoph Borchardt2017-08-291-2/+1
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* Add buttom border for headerMorris Jobke2017-08-141-0/+20
| | | | | | | * allows to distinct the header from the rest of the UI for bright colors * ref #5654 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge pull request #5982 from ↵Lukas Reschke2017-08-081-1/+2
|\ | | | | | | | | nextcloud/fix-loading-icon-inside-upload-button-in-theming-app Fix loading icon inside upload button in Theming app
| * Fix loading icon inside upload button in Theming appDaniel Calviño Sánchez2017-08-071-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | Pull request #5969 fixed the vertical alignment of loading icon and status message in Theming app, but in doing so it broke the loading icon inside the upload button. When an image is being uploaded the upload icon is replaced by a loading icon, so the loading icon and the upload icon have to share their CSS rules, but only in that specific case. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Merge pull request #5972 from ↵Morris Jobke2017-08-081-1/+1
|\ \ | |/ |/| | | | | nextcloud/replace-loading-icon-gif-with-pure-css-in-login-button Replace loading icon GIF with pure CSS in login button
| * Replace loading icon GIF with pure CSS loading iconDaniel Calviño Sánchez2017-08-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The pure CSS loading icon uses an ::after pseudo-element, and thus it can only be used on container elements; the input element is not a container element, so when the class "icon-loading-small" is set on an input element it falls back to a loading icon GIF. This commit modifies the markup of the login button to add a div element that holds the confirm icon and the loading icon (depending on the case). In order to position the icon in the same place as before the input and the icon are both wrapped by another div making possible to set the absolute position of the icon relative to the input. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Merge pull request #5969 from ↵Morris Jobke2017-08-041-20/+8
|\ \ | | | | | | | | | | | | nextcloud/fix-vertical-alignment-of-loading-icon-and-status-message-in-theming-app Fix vertical alignment of loading icon and status message in Theming app
| * | Fix code styleDaniel Calviño Sánchez2017-08-031-1/+1
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Remove superfluous selector partDaniel Calviño Sánchez2017-08-031-1/+1
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Align vertically loading icon and status messageDaniel Calviño Sánchez2017-08-031-6/+6
| | | | | | | | | | | | | | | | | | | | | As both elements are inline/inline-block and belong to the same line they can be aligned vertically using "vertical-align: middle". Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Do not use the same rules for loading icon than for upload iconDaniel Calviño Sánchez2017-08-031-2/+1
| | | | | | | | | | | | | | | | | | | | | The loading icon is used in a totally different way than the upload icon and thus it should not share its CSS rules. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | Remove ignored rulesDaniel Calviño Sánchez2017-08-031-11/+0
| |/ | | | | | | | | | | | | The removed rules were either always overriden by other rules or never used due to not matching any element. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* / Revert "Proof of concept #5593 - inline SVG icon for icon-contacts"Joas Schilling2017-08-031-2/+2
|/
* Proof of concept #5593 - inline SVG icon for icon-contactsMarin Treselj2017-08-021-2/+2
| | | | Signed-off-by: Marin Treselj <marin@pixelipo.com>
* Revert background-size as requested, issue will be fixed separatelyMarin Treselj2017-07-021-0/+3
| | | | Signed-off-by: Marin Treselj <marin.treselj@forlagshuset.no>
* Simplified Nextcloud logo iconMarin Treselj2017-07-021-5/+1
| | | | Signed-off-by: Marin Treselj <marin@pixelipo.com>
* Fix more icon in apps menu on bright backgroundsJulius Härtl2017-06-171-0/+3
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Show reset to default button for theming values on hover, fix #3198Jan-Christoph Borchardt2017-06-091-0/+2
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* Scale logo only for custom onesJulius Härtl2017-05-191-0/+3
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Fix logo being too big on log in page, fix #4585Jan-Christoph Borchardt2017-05-161-2/+1
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* Clicking on theming preview triggers fileupload dialogMorris Jobke2017-05-111-0/+5
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Fix theming preview for background imageJulius Härtl2017-05-091-1/+2
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Adjust login button color and remove borderJulius Härtl2017-05-081-4/+4
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Theming app: Add plain background color optionJulius Haertl2017-05-082-3/+60
| | | | Signed-off-by: Julius Haertl <jus@bitgrid.net>
* Fix invalid theming URLsMorris Jobke2017-05-051-2/+2
| | | | | | | * logo and background image had the cache buster applied twice: background-image: url(http://192.168.99.100/server/core/img/logo.svg?v=0?v=0); Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Code cleanup and preview for undo actionsJulius Härtl2017-04-291-1/+6
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Use generated SCSS for theming previewJulius Härtl2017-04-291-4/+25
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Invert new header icons on bright theming colorsJulius Härtl2017-04-281-6/+9
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Implement scss variable injection by OC_DefaultsJulius Haertl2017-04-251-0/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Haertl <jus@bitgrid.net> Add Scss variables to example theme and theming app Signed-off-by: Julius Haertl <jus@bitgrid.net> Use SCSSCacher to build theming css Signed-off-by: Julius Härtl <jus@bitgrid.net> Update theming.scss Signed-off-by: Julius Härtl <jus@bitgrid.net> Code cleanup Signed-off-by: Julius Härtl <jus@bitgrid.net> Fix tests Signed-off-by: Julius Härtl <jus@bitgrid.net> Inject SCSSCacher for easier testing Signed-off-by: Julius Härtl <jus@bitgrid.net> Fix typehint Signed-off-by: Lukas Reschke <lukas@statuscode.ch> Generate absolute URLs Signed-off-by: Lukas Reschke <lukas@statuscode.ch> Fix tests to always use absolute urls for theming images Signed-off-by: Julius Härtl <jus@bitgrid.net> MailheaderColor -> ColorPrimary Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* theming: move reset button into field and only show when focusedJan-Christoph Borchardt2016-11-161-3/+21
| | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* Theming: Show loading spinner while uploading filesJulius Haertl2016-08-301-7/+9
|
* Theming: Add preview for login screenJulius Haertl2016-08-261-0/+15
|
* design and layout fixes for Theming appJan-Christoph Borchardt2016-06-271-2/+8
|
* add some visual feedback if the operation was succesful or notBjoern Schiessle2016-06-271-0/+4
|
* write theme settings to databaseBjoern Schiessle2016-06-271-0/+21
|
* basic information architecture for the theming appJan-Christoph Borchardt2016-06-271-0/+3
|
* initial commit for the theming appBjoern Schiessle2016-06-271-0/+0