From 82c00310498e56a59d00b7998c89a2d0759ba859 Mon Sep 17 00:00:00 2001 From: seb1k <64972483+seb1k@users.noreply.github.com> Date: Fri, 24 May 2024 14:26:35 +0200 Subject: [PATCH] Add files via upload --- README.md | 140 +- deps/bootstrap.bundle.min.js | 6 + deps/bootstrap.min.css | 2117 +++++ fonts/fa-regular-400.woff | Bin 0 -> 16804 bytes fonts/fa-regular-400.woff2 | Bin 0 -> 13580 bytes fonts/fa-solid-900.woff | Bin 0 -> 98020 bytes fonts/fa-solid-900.woff2 | Bin 0 -> 75440 bytes fonts/roboto-v19-italic-700.woff | Bin 0 -> 70756 bytes fonts/roboto-v19-italic-700.woff2 | Bin 0 -> 55192 bytes fonts/roboto-v19-italic.woff | Bin 0 -> 70252 bytes fonts/roboto-v19-italic.woff2 | Bin 0 -> 54984 bytes fonts/roboto-v19-regular-700.woff | Bin 0 -> 66260 bytes fonts/roboto-v19-regular-700.woff2 | Bin 0 -> 51088 bytes fonts/roboto-v19-regular.woff | Bin 0 -> 66044 bytes fonts/roboto-v19-regular.woff2 | Bin 0 -> 51116 bytes images/contactgroup.svg | 3 + images/contactpic.svg | 3 + images/corner-handle.svg | 3 + images/download.svg | 3 + images/favicon.ico | Bin 0 -> 16958 bytes images/google-icon.svg | 1 + images/logo.svg | 11 + images/microsoft-icon.svg | 8 + meta.json | 21 + plugins/calendar/templates/calendar.html | 402 + plugins/calendar/templates/dialog.html | 7 + plugins/calendar/templates/eventedit.html | 155 + .../calendar/templates/freebusylegend.html | 9 + plugins/calendar/templates/itipattend.html | 11 + plugins/calendar/templates/print.html | 19 + plugins/libkolab/libkolab.min.css | 1 + plugins/libkolab/templates/acl.html | 33 + plugins/libkolab/templates/attachment.html | 68 + plugins/libkolab/templates/folderform.html | 9 + plugins/swipe/includes/menu.html | 25 + plugins/swipe/swipe.less | 245 + plugins/swipe/swipe.min.css | 1 + styles/embed.min.css | 1 + styles/print.min.css | 1 + styles/styles.min.css | 7915 +++++++++++++++++ templates/about.html | 16 + templates/addressbook.html | 173 + templates/bounce.html | 74 + templates/compose.html | 294 + templates/contact.html | 23 + templates/contactedit.html | 29 + templates/contactimport.html | 9 + templates/contactprint.html | 19 + templates/contactsearch.html | 9 + templates/dialog.html | 7 + templates/error.html | 21 + templates/folderedit.html | 13 + templates/folders.html | 63 + templates/identities.html | 43 + templates/identityedit.html | 13 + templates/includes/footer.html | 14 + templates/includes/footer_menu.html | 17 + templates/includes/layout.html | 46 + templates/includes/mail-menu.html | 101 + templates/includes/menu.html | 42 + templates/includes/message-popmenu.html | 38 + templates/includes/pagenav.html | 20 + templates/includes/settings-menu.html | 21 + templates/includes/top-right_menu.html | 16 + templates/login.html | 24 + templates/mail.html | 292 + templates/message.html | 142 + templates/messagepart.html | 119 + templates/messageprint.html | 27 + templates/plugin.html | 15 + templates/responseedit.html | 13 + templates/responses.html | 42 + templates/settings.html | 28 + templates/settingsedit.html | 13 + thumbnail.png | Bin 0 -> 4755 bytes ui.min.js | 5101 +++++++++++ watermark.html | 38 + 77 files changed, 18157 insertions(+), 36 deletions(-) create mode 100644 deps/bootstrap.bundle.min.js create mode 100644 deps/bootstrap.min.css create mode 100644 fonts/fa-regular-400.woff create mode 100644 fonts/fa-regular-400.woff2 create mode 100644 fonts/fa-solid-900.woff create mode 100644 fonts/fa-solid-900.woff2 create mode 100644 fonts/roboto-v19-italic-700.woff create mode 100644 fonts/roboto-v19-italic-700.woff2 create mode 100644 fonts/roboto-v19-italic.woff create mode 100644 fonts/roboto-v19-italic.woff2 create mode 100644 fonts/roboto-v19-regular-700.woff create mode 100644 fonts/roboto-v19-regular-700.woff2 create mode 100644 fonts/roboto-v19-regular.woff create mode 100644 fonts/roboto-v19-regular.woff2 create mode 100644 images/contactgroup.svg create mode 100644 images/contactpic.svg create mode 100644 images/corner-handle.svg create mode 100644 images/download.svg create mode 100644 images/favicon.ico create mode 100644 images/google-icon.svg create mode 100644 images/logo.svg create mode 100644 images/microsoft-icon.svg create mode 100644 meta.json create mode 100644 plugins/calendar/templates/calendar.html create mode 100644 plugins/calendar/templates/dialog.html create mode 100644 plugins/calendar/templates/eventedit.html create mode 100644 plugins/calendar/templates/freebusylegend.html create mode 100644 plugins/calendar/templates/itipattend.html create mode 100644 plugins/calendar/templates/print.html create mode 100644 plugins/libkolab/libkolab.min.css create mode 100644 plugins/libkolab/templates/acl.html create mode 100644 plugins/libkolab/templates/attachment.html create mode 100644 plugins/libkolab/templates/folderform.html create mode 100644 plugins/swipe/includes/menu.html create mode 100644 plugins/swipe/swipe.less create mode 100644 plugins/swipe/swipe.min.css create mode 100644 styles/embed.min.css create mode 100644 styles/print.min.css create mode 100644 styles/styles.min.css create mode 100644 templates/about.html create mode 100644 templates/addressbook.html create mode 100644 templates/bounce.html create mode 100644 templates/compose.html create mode 100644 templates/contact.html create mode 100644 templates/contactedit.html create mode 100644 templates/contactimport.html create mode 100644 templates/contactprint.html create mode 100644 templates/contactsearch.html create mode 100644 templates/dialog.html create mode 100644 templates/error.html create mode 100644 templates/folderedit.html create mode 100644 templates/folders.html create mode 100644 templates/identities.html create mode 100644 templates/identityedit.html create mode 100644 templates/includes/footer.html create mode 100644 templates/includes/footer_menu.html create mode 100644 templates/includes/layout.html create mode 100644 templates/includes/mail-menu.html create mode 100644 templates/includes/menu.html create mode 100644 templates/includes/message-popmenu.html create mode 100644 templates/includes/pagenav.html create mode 100644 templates/includes/settings-menu.html create mode 100644 templates/includes/top-right_menu.html create mode 100644 templates/login.html create mode 100644 templates/mail.html create mode 100644 templates/message.html create mode 100644 templates/messagepart.html create mode 100644 templates/messageprint.html create mode 100644 templates/plugin.html create mode 100644 templates/responseedit.html create mode 100644 templates/responses.html create mode 100644 templates/settings.html create mode 100644 templates/settingsedit.html create mode 100644 thumbnail.png create mode 100644 ui.min.js create mode 100644 watermark.html diff --git a/README.md b/README.md index 94ebd0e..8c663cd 100644 --- a/README.md +++ b/README.md @@ -1,51 +1,119 @@ -# Elastic2022 +Roundcube Webmail Skin "Elastic" +================================ + +This skin package contains a theme for the Roundcube Webmail +software. It can be used, modified and redistributed according to +the terms described in the LICENSE section. + +For information about building or modifying Roundcube skins please visit +https://github.com/roundcube/roundcubemail/wiki/Skins +LICENSE +------- -Elastic2022 is a Roundcube skin based on Elastic +The contents of this folder are subject to the Creative Commons +Attribution-ShareAlike License. It is allowed to copy, distribute, +transmit and to adapt the work by keeping credits to the original +authors in the README.md file. +See http://creativecommons.org/licenses/by-sa/3.0/ for details. + +This folder also contains code licensed separately: +- Bootstrap Framework 4 from https://github.com/twbs/bootstrap +- FontAwesome 5 fonts from https://fontawesome.com/ +- Roboto font from https://google-webfonts-helper.herokuapp.com/fonts/roboto?subsets=cyrillic,latin-ext,cyrillic-ext,latin,greek,greek-ext -- Design changed to fit android dark theme. -- Better user interface -- Modern menus -- Plugin support -- New Dark / Light mode +INSTALLATION +------------ + +All styles are written using LESS syntax. Thus it needs to be compiled +using the `lessc` (>= 2.5.2) command line tool. This comes with the `nodejs-less` +RPM package or using `npm install less` which depend on nodejs. +``` + $ lessc --clean-css="--s1 --advanced" styles/styles.less > styles/styles.min.css + $ lessc --clean-css="--s1 --advanced" styles/print.less > styles/print.min.css + $ lessc --clean-css="--s1 --advanced" styles/embed.less > styles/embed.min.css +``` +(`--clean-css="--s1 --advanced"` minifies the css, requires the clean-css Less plugin. +The plugin can be installed using `npm install less-plugin-clean-css`) + +References to image files from the included CSS files can be appended +with cache-buster marks to avoid browser caching issues after updating. + +Run `bin/updatecss.sh --dir skins/elastic` before packaging the skin +or after installing it on the destination system. -## New features -### Pull down to refresh email - +FOR DEVELOPERS +-------------- -### Email autoresize - +- Supported browsers: IE11+, Edge, Last 2 versions for Chrome/Firefox/Safari, + Android Browser 5+, iOS Safari 9+. -### Contact thumbail -![screenshot](img/preview-icon.png) +- Skin color palette changes and other css modifications can be done + via _styles.less and _variables.less files. Where you can overwrite all + variables and add custom styles. -## Screenshot +- Minimum supported screen width is 240px (note that even if the device screen + resolution is e.g.320x372 changing the text size in device settings will reduce + the resolution) -![screenshot](img/2022-2.png) -![screenshot](img/phone2.png) +- Every page (which is not a frame) has following required structure: +``` + +
+
+
+
+
+
+ +``` + where `#layout-sidebar` and `#layout-list` are optional. Which element of the `#layout` will be displayed + as a main view on mobile devices can be defined by adding `selected` class to it. -![screenshot](img/phone2.jpg) +- The `` element will receive special classes that will be updated on resize + or orientation change: + - `touch`: A touch device, screen width <= 1024px, + - `layout-large`: Screen width > 1200px, + - `layout-normal`: Screen width <= 1200px and >= 768px, + - `layout-small`: Screen width < 768px and > 480px, + - `layout-phone`: Screen width <= 480px. + + Frames will have the same classes applied as their parent windows. + +- Every button, that is not + + +
+ +
+
+ + +
+ +
+
+ + +   + + +
+
+ + +   + + +
+
+ + + + + + + + + +
+
+ + +
+ +
+ +
+ +
+ +
+

+ + +
+ +
+

+ +
+ + + + + +
+

Event Title

+

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + ⇢ + +
+
+ + ⇢ + +
+
+ + ⇢ + +
+
+ + ⇢ + +
+
+ + ⇢ + +
+
+ + ⇢ + +
+
+ + ⇢ + +
+
+ + ⇢ + +
+
+ +
+
+
+
+ + + + + + diff --git a/plugins/calendar/templates/dialog.html b/plugins/calendar/templates/dialog.html new file mode 100644 index 0000000..28dcf79 --- /dev/null +++ b/plugins/calendar/templates/dialog.html @@ -0,0 +1,7 @@ + + +

+ + + + diff --git a/plugins/calendar/templates/eventedit.html b/plugins/calendar/templates/eventedit.html new file mode 100644 index 0000000..6abec04 --- /dev/null +++ b/plugins/calendar/templates/eventedit.html @@ -0,0 +1,155 @@ +
formcontent" aria-hidden="true" data-notabs="true"> +
+ +
+ +
+ + +
+
+ + + + + +
+
+ + +
+
+ +
+   + + +
+
+
+ +
+   + +
+
+
+ +
+
+ + + + + +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ +
+ +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +

+ + + +
+ +
+ +

+ + + +
+ +
+ +
+

+
+ + +
+
+ +
+
+ +
+
+
diff --git a/plugins/calendar/templates/freebusylegend.html b/plugins/calendar/templates/freebusylegend.html new file mode 100644 index 0000000..356e939 --- /dev/null +++ b/plugins/calendar/templates/freebusylegend.html @@ -0,0 +1,9 @@ +
+ + + + + +
diff --git a/plugins/calendar/templates/itipattend.html b/plugins/calendar/templates/itipattend.html new file mode 100644 index 0000000..0dd4dfb --- /dev/null +++ b/plugins/calendar/templates/itipattend.html @@ -0,0 +1,11 @@ + + + +