diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2011-06-02 17:20:54 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net ; true> | 2011-06-02 17:20:54 -0700 |
commit | 0720091ca73b9714aab2b38c3682c15a0cbd4533 (patch) | |
tree | 0d77e48eb52d3f39123659550976c5999effddff /htdocs/js/tiny_mce/plugins/table/css | |
parent | 1800a1e9022a9f4316e0d57a650faed9da0e8df4 (diff) |
Added pages
Diffstat (limited to 'htdocs/js/tiny_mce/plugins/table/css')
-rw-r--r-- | htdocs/js/tiny_mce/plugins/table/css/cell.css | 17 | ||||
-rw-r--r-- | htdocs/js/tiny_mce/plugins/table/css/row.css | 25 | ||||
-rw-r--r-- | htdocs/js/tiny_mce/plugins/table/css/table.css | 13 |
3 files changed, 55 insertions, 0 deletions
diff --git a/htdocs/js/tiny_mce/plugins/table/css/cell.css b/htdocs/js/tiny_mce/plugins/table/css/cell.css new file mode 100644 index 0000000..a067ecd --- /dev/null +++ b/htdocs/js/tiny_mce/plugins/table/css/cell.css @@ -0,0 +1,17 @@ +/* CSS file for cell dialog in the table plugin */
+
+.panel_wrapper div.current {
+ height: 200px;
+}
+
+.advfield {
+ width: 200px;
+}
+
+#action {
+ margin-bottom: 3px;
+}
+
+#class {
+ width: 150px;
+}
\ No newline at end of file diff --git a/htdocs/js/tiny_mce/plugins/table/css/row.css b/htdocs/js/tiny_mce/plugins/table/css/row.css new file mode 100644 index 0000000..1f7755d --- /dev/null +++ b/htdocs/js/tiny_mce/plugins/table/css/row.css @@ -0,0 +1,25 @@ +/* CSS file for row dialog in the table plugin */
+
+.panel_wrapper div.current {
+ height: 200px;
+}
+
+.advfield {
+ width: 200px;
+}
+
+#action {
+ margin-bottom: 3px;
+}
+
+#rowtype,#align,#valign,#class,#height {
+ width: 150px;
+}
+
+#height {
+ width: 50px;
+}
+
+.col2 {
+ padding-left: 20px;
+}
diff --git a/htdocs/js/tiny_mce/plugins/table/css/table.css b/htdocs/js/tiny_mce/plugins/table/css/table.css new file mode 100644 index 0000000..d11c3f6 --- /dev/null +++ b/htdocs/js/tiny_mce/plugins/table/css/table.css @@ -0,0 +1,13 @@ +/* CSS file for table dialog in the table plugin */
+
+.panel_wrapper div.current {
+ height: 245px;
+}
+
+.advfield {
+ width: 200px;
+}
+
+#class {
+ width: 150px;
+}
|