aboutsummaryrefslogtreecommitdiff
path: root/public/css/styleedit.css
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2018-07-31 18:29:53 +0200
committervincent-peugnet <v.peugnet@free.fr>2018-07-31 18:29:53 +0200
commite9b2ca7c06875069fa03379258625490872cc33d (patch)
tree3af763a303f07c75d63ca9801c98e58fa9052628 /public/css/styleedit.css
parentc36f25e76f40c6fdd6e02f92713d9c1241ed0a79 (diff)
downloadwcms-e9b2ca7c06875069fa03379258625490872cc33d.tar.gz
wcms-e9b2ca7c06875069fa03379258625490872cc33d.zip
W 2.4 graphic update table sort engine update
Diffstat (limited to 'public/css/styleedit.css')
-rw-r--r--public/css/styleedit.css120
1 files changed, 120 insertions, 0 deletions
diff --git a/public/css/styleedit.css b/public/css/styleedit.css
new file mode 100644
index 0000000..0e5ed01
--- /dev/null
+++ b/public/css/styleedit.css
@@ -0,0 +1,120 @@
+.edit {
+ background-color: var(--color1);
+}
+
+#linklist {
+ background-color: var(--color1);
+}
+
+#submit {
+ background-color: var(--color1);
+}
+
+#copy {
+ background-color: var(--color1);
+}
+
+
+#artedit {
+ background-color: var(--color1);
+}
+
+details {
+ background-color: var(--color1);
+}
+
+
+
+
+
+
+details#editinfo {
+ position: fixed;
+ top: 0;
+ left: 10%;
+ width: 40%;
+}
+
+details#editcss {
+ position: fixed;
+ top: 0;
+ left: 50%;
+ width: 40%;
+}
+
+div#submit {
+ position: fixed;
+ top: 0;
+ width: 10%;
+}
+
+textarea#html {
+ width: 100%;
+ height: 100%;
+ font-size: 1em;
+ padding-top: 40px;
+ padding-bottom: 40px;
+ font-family: serif;
+ padding-left: 2%;
+ padding-right: calc(50% - 500px);
+
+}
+
+
+div#copy {
+ position: fixed;
+ bottom: 0;
+}
+
+div#linklist {
+ position: fixed;
+ bottom: 0;
+ right: 0;
+ min-width: 10%;
+ max-width: 50%;
+ max-height: 50%;
+ overflow-y: auto;
+
+}
+
+div#linklist div#roll {
+ display: none;
+}
+
+div#linklist:hover div#roll {
+ display: block;
+ width: auto;
+}
+
+div#roll ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+
+
+
+details label {
+ display: block;
+ margin-top: 4px;
+}
+
+textarea#css {
+ width: 100%;
+ height: 200px;
+}
+
+details select, details input, details label, details textarea#css {
+ width: 100%;
+}
+
+fieldset {
+ margin: 0;
+ padding: 0;
+ border: none;
+}
+
+summary, div#linklist, div#copy, div#submit {
+ border: ridge 1px grey;
+
+} \ No newline at end of file