diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2015-06-02 14:12:47 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2015-06-17 13:53:59 +0200 |
commit | 06d0a41915998918c2c162d609ee0eeded0a849d (patch) | |
tree | 0d6e7b046d744eb2f7ac155fee38451e4acf6d50 /apps/files_sharing/css/3rdparty | |
parent | 1cccb227c398d3c5428672aaf9cf6b14e248e5f7 (diff) | |
download | nextcloud-server-06d0a41915998918c2c162d609ee0eeded0a849d.tar.gz nextcloud-server-06d0a41915998918c2c162d609ee0eeded0a849d.zip |
add social media button for diaspora, twitter, facebook and google+
Diffstat (limited to 'apps/files_sharing/css/3rdparty')
-rw-r--r-- | apps/files_sharing/css/3rdparty/gs-share/style.css | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/apps/files_sharing/css/3rdparty/gs-share/style.css b/apps/files_sharing/css/3rdparty/gs-share/style.css new file mode 100644 index 00000000000..c699ddb3db5 --- /dev/null +++ b/apps/files_sharing/css/3rdparty/gs-share/style.css @@ -0,0 +1,49 @@ +.js-gs-share, .gs-share [aria-hidden="true"], .gs-share-form[aria-hidden="true"] { + display: none; +} + +.js-gs-share-enabled .js-gs-share { + display: inline; + float: left; +} + +.gs-share .js-gs-share[href] { + display: inline; +} + +.gs-share [aria-hidden="false"], .gs-share-form[aria-hidden="false"] { + display: block; + margin-top: 40px; +} + +.gs-share { + position: relative; +} + +.gs-share-form { + background: #FFF; + border: 1px solid #000; + border-radius: 5px; + padding: 5px; + position: absolute; + z-index: 1; +} + +.gs-share [for="gs-account"], .gs-share [type="text"] { + display: block; + margin-bottom: 8px; +} + +.gs-share [type="submit"] { + display: block; + margin-top: 8px; +} + +.gs-share--icon { + border: none; + cursor: pointer; + min-height: 32px; + padding: 0; + padding-left: 33px; + background: transparent url('../../../img/gs-share.png') no-repeat left center; +} |