diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-10-20 00:03:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-20 00:03:42 +0200 |
commit | ba0cab72ef19dba8f1c04e8b75f6cf7f7a59be51 (patch) | |
tree | 6b94817a5013cd20ea40bd47e47e854782029de3 /core | |
parent | 73f4ae94dd7b0798278f64fec9feaad5d0badba3 (diff) | |
parent | c52ccbde49a8ebeb1a5cdcfe32a2b7446f655679 (diff) | |
download | nextcloud-server-ba0cab72ef19dba8f1c04e8b75f6cf7f7a59be51.tar.gz nextcloud-server-ba0cab72ef19dba8f1c04e8b75f6cf7f7a59be51.zip |
Merge pull request #1803 from nextcloud/fullscreen-icon
add fullscreen icon
Diffstat (limited to 'core')
-rw-r--r-- | core/css/icons.css | 7 | ||||
-rw-r--r-- | core/img/actions/fullscreen-white.svg | 4 | ||||
-rw-r--r-- | core/img/actions/fullscreen.svg | 4 |
3 files changed, 15 insertions, 0 deletions
diff --git a/core/css/icons.css b/core/css/icons.css index df36ae58710..d62ab1504db 100644 --- a/core/css/icons.css +++ b/core/css/icons.css @@ -195,6 +195,13 @@ img.icon-loading-small-dark, object.icon-loading-small-dark, video.icon-loading- background-image: url('../img/actions/external.svg?v=1'); } +.icon-fullscreen { + background-image: url('../img/actions/fullscreen.svg?v=1'); +} +.icon-fullscreen-white { + background-image: url('../img/actions/fullscreen-white.svg?v=1'); +} + .icon-history { background-image: url('../img/actions/history.svg?v=1'); } diff --git a/core/img/actions/fullscreen-white.svg b/core/img/actions/fullscreen-white.svg new file mode 100644 index 00000000000..77052945fb2 --- /dev/null +++ b/core/img/actions/fullscreen-white.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"> + <path d="m8 1c-0.554 0-1 0.446-1 1s0.446 1 1 1h5v5c0 0.554 0.446 1 1 1s1-0.446 1-1v-6c0-0.554-0.446-1-1-1h-6zm-6 6c-0.554 0-1 0.446-1 1v6c0 0.554 0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-5v-5c0-0.554-0.446-1-1-1z" fill-rule="evenodd" fill="#fff"/> +</svg> diff --git a/core/img/actions/fullscreen.svg b/core/img/actions/fullscreen.svg new file mode 100644 index 00000000000..8bf215779db --- /dev/null +++ b/core/img/actions/fullscreen.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"> + <path d="m8 1c-0.554 0-1 0.446-1 1s0.446 1 1 1h5v5c0 0.554 0.446 1 1 1s1-0.446 1-1v-6c0-0.554-0.446-1-1-1h-6zm-6 6c-0.554 0-1 0.446-1 1v6c0 0.554 0.446 1 1 1h6c0.554 0 1-0.446 1-1s-0.446-1-1-1h-5v-5c0-0.554-0.446-1-1-1z" fill-rule="evenodd"/> +</svg> |