Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/style/modal_dialog/prompt.css
diff options
context:
space:
mode:
Diffstat (limited to 'apps/system/style/modal_dialog/prompt.css')
-rw-r--r--apps/system/style/modal_dialog/prompt.css50
1 files changed, 50 insertions, 0 deletions
diff --git a/apps/system/style/modal_dialog/prompt.css b/apps/system/style/modal_dialog/prompt.css
new file mode 100644
index 0000000..69d726d
--- /dev/null
+++ b/apps/system/style/modal_dialog/prompt.css
@@ -0,0 +1,50 @@
+/* ----------------------------------
+ * STYLES FOR PROMPT
+ * Requires:
+ menu-dialoges/core.css
+ other/buttons/style.css
+ * ---------------------------------- */
+
+[role="dialog"] p {
+ font-family: 'MozTT', Sans-serif;
+ font-weight: lighter;
+ font-size: 2.2rem;
+ color: #FAFAFA;
+ margin: 0;
+}
+
+[role="dialog"] p:last-child {
+ overflow-x: hidden;
+ overflow-y: auto;
+ word-wrap: break-word;
+ /*screen height - menu data-items - dialog padding - title height*/
+ /*almost 60% screen height*/
+ max-height: 28rem;
+}
+
+[role="dialog"] .content {
+ font-family: 'MozTT', Sans-serif;
+ font-weight: lighter;
+ font-size: 2.2rem;
+ color: #fff;
+ border-bottom: 0.1rem solid #777;
+ margin: 0;
+ padding: 2.5rem 0 2rem 0;
+}
+
+[role="dialog"] .content img {
+ float: left;
+ margin-right: 2rem;
+}
+
+[role="dialog"] .content strong {
+ font-weight: lighter;
+}
+
+[role="dialog"] .content small {
+ font-size: 1.4rem;
+ font-family: 'MozTT', Sans-serif;
+ font-weight: normal;
+ color: #cbcbcb;
+ display: block;
+}