Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Ehrke <developer@georgehrke.com>2018-06-19 22:01:14 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-06-29 11:44:44 +0300
commit4aa4e4080c27356792b6eeab1f2f2b36ad485a05 (patch)
tree07197c21582d4e74cacce3704eaa5a67b5fb89bb /apps/dav/css
parent3ff3141a1e4c9482ddaa68e13f545eb7e62ff9b7 (diff)
Include accept / decline links in CalDAV invitation emails
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'apps/dav/css')
-rw-r--r--apps/dav/css/schedule-response.css78
1 files changed, 78 insertions, 0 deletions
diff --git a/apps/dav/css/schedule-response.css b/apps/dav/css/schedule-response.css
new file mode 100644
index 00000000000..789ea16df7a
--- /dev/null
+++ b/apps/dav/css/schedule-response.css
@@ -0,0 +1,78 @@
+/* Database selector on install page */
+form #selectPartStatForm {
+ text-align:center;
+ white-space: nowrap;
+ margin: 0;
+}
+
+form #selectPartStatForm .info {
+ white-space: normal;
+}
+
+form #selectPartStatForm input[type="radio"] {
+ display: none;
+}
+
+form #selectPartStatForm input[type="radio"]:checked+label {
+ background-color: #e8e8e8;
+}
+
+form #selectPartStatForm input[type="radio"]:checked ~ form fieldset#more_options {
+ display: none;
+}
+
+form #selectPartStatForm label {
+ color: #000;
+ background-color: #f8f8f8;
+ position: static;
+ margin: 0 -3px 5px;
+ cursor:pointer;
+ border: 1px solid #ddd;
+ display: inline-block;
+ padding: 0;
+ line-height: normal;
+ vertical-align: middle;
+ text-align: center;
+ overflow: visible;
+}
+
+form #selectPartStatForm label:first-of-type {
+ border-top-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+}
+
+form #selectPartStatForm label:last-of-type {
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+}
+
+form #selectPartStatForm label span {
+ cursor: pointer;
+ padding: 10px 20px;
+ display: block;
+ line-height: normal;
+}
+form #selectPartStatForm label.ui-state-hover,
+form #selectPartStatForm label.ui-state-active {
+ color:#000;
+ background-color:#e8e8e8;
+}
+
+form input[type="number"] {
+ width: 249px;
+ background: #fff;
+ color: #555;
+ cursor: text;
+ font-family: inherit;
+ -webkit-appearance: textfield;
+ -moz-appearance: textfield;
+ box-sizing: content-box;
+ border: none;
+ font-weight: 300;
+}
+
+form input[type="submit"] {
+ display: block;
+ margin: 0 auto;
+ padding: 11px 20px 9px
+} \ No newline at end of file