From aeb215a5c269ba7b6be540d06730b0ffce265c14 Mon Sep 17 00:00:00 2001 From: Cesar G Date: Sun, 10 Nov 2013 15:47:44 -0800 Subject: [ticket/11915] Move some of the #cp-main table rules to separate class. PHPBB3-11915 --- phpBB/styles/prosilver/theme/colours.css | 12 ++++++------ phpBB/styles/prosilver/theme/cp.css | 14 +++++++------- 2 files changed, 13 insertions(+), 13 deletions(-) (limited to 'phpBB/styles/prosilver/theme') diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index cad740200d..eee503516b 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -803,11 +803,11 @@ Colours and backgrounds for cp.css /* Main CP box ----------------------------------------*/ -#cp-main h3, #cp-main hr, #cp-menu hr { +.panel-container h3, .panel-container hr, #cp-menu hr { border-color: #A4B3BF; } -#cp-main .panel li.row { +.panel-container .panel li.row { border-bottom-color: #B5C1CB; border-top-color: #F9F9F9; } @@ -816,11 +816,11 @@ ul.cplist { border-top-color: #B5C1CB; } -#cp-main .panel li.header dd, #cp-main .panel li.header dt { +.panel-container .panel li.header dd, .panel-container .panel li.header dt { color: #000000; } -#cp-main table.table1 thead th { +.panel-container table.table1 thead th { color: #333333; border-bottom-color: #333333; } @@ -921,11 +921,11 @@ ul.cplist { /* Preferences pane layout ----------------------------------------*/ -#cp-main h2 { +.panel-container h2 { color: #333333; } -#cp-main .panel { +.panel-container .panel { background-color: #F9F9F9; } diff --git a/phpBB/styles/prosilver/theme/cp.css b/phpBB/styles/prosilver/theme/cp.css index 2003fef954..8f31eeb5cc 100644 --- a/phpBB/styles/prosilver/theme/cp.css +++ b/phpBB/styles/prosilver/theme/cp.css @@ -20,16 +20,16 @@ padding: 0; } -#cp-main .panel p { +.panel-container .panel p { font-size: 1.1em; } -#cp-main .panel ol { +.panel-container .panel ol { margin-left: 2em; font-size: 1.1em; } -#cp-main .panel li.row { +.panel-container .panel li.row { border-bottom: 1px solid transparent; border-top: 1px solid transparent; } @@ -39,21 +39,21 @@ ul.cplist { border-top: 1px solid transparent; } -#cp-main .panel li.header dd, #cp-main .panel li.header dt { +.panel-container .panel li.header dd, .panel-container .panel li.header dt { margin-bottom: 2px; } -#cp-main table.table1 { +.panel-container table.table1 { margin-bottom: 1em; } -#cp-main table.table1 thead th { +.panel-container table.table1 thead th { font-weight: bold; border-bottom: 1px solid transparent; padding: 5px; } -#cp-main table.table1 tbody th { +.panel-container table.table1 tbody th { font-style: italic; background-color: transparent !important; border-bottom: none; -- cgit v1.2.1 From 4361c1c9ac783a0004edebab83ca26a8899361df Mon Sep 17 00:00:00 2001 From: Cesar G Date: Sun, 10 Nov 2013 16:38:22 -0800 Subject: [ticket/11915] Move the uploaded attachment list under the attachments tab. PHPBB3-11915 --- phpBB/styles/prosilver/theme/colours.css | 10 ++++- phpBB/styles/prosilver/theme/plupload.css | 75 ++++++++++++++++++++++++++++--- 2 files changed, 78 insertions(+), 7 deletions(-) (limited to 'phpBB/styles/prosilver/theme') diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index eee503516b..8c411a9f4d 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -76,8 +76,14 @@ hr { color: #000000; } -.bg1 { background-color: #ECF3F7; } -.bg2 { background-color: #e1ebf2; } +table.zebra-list tr:nth-child(odd) td, ul.zebra-list li:nth-child(odd), .bg1 { + background-color: #ECF3F7; +} + +table.zebra-list tr:nth-child(even) td, ul.zebra-list li:nth-child(even), .bg2 { + background-color: #e1ebf2; +} + .bg3 { background-color: #cadceb; } .ucprowbg { diff --git a/phpBB/styles/prosilver/theme/plupload.css b/phpBB/styles/prosilver/theme/plupload.css index 16c26822b5..b296e61e74 100644 --- a/phpBB/styles/prosilver/theme/plupload.css +++ b/phpBB/styles/prosilver/theme/plupload.css @@ -1,11 +1,76 @@ -.plupload_filelist li.can_delete:hover { - cursor: pointer; +#attach-panel-multi { + display: none; + margin-bottom: 1em; } -.plupload_filelist li.can_delete:hover a { - background: url('../../../assets/plupload/jquery.plupload.queue/img/delete.gif'); +#file-list td { + vertical-align: middle; } -.plupload_filelist li a.working { +.attach-name { + width: 50%; +} + +.attach-comment { + width: 30%; +} + +.attach-filesize { + width: 15%; +} + +.attach-status { + width: 5%; +} + +.attach-filesize, .attach-status { + text-align: center; +} + +.attach-controls { + display: inline-block; + float: right; +} + +#attach-row-tpl { + display: none; +} + +#file-total-progress { + height: 2px; + display: block; + position: relative; + margin: 4px -10px -6px -10px; +} + +.file-progress { + background-color: #CCCCCC; + display:inline-block; + height: 8px; + width: 50px; +} + +.file-progress-bar, #file-total-progress-bar { + background-color: green; + display: block; + height: 100%; + width: 0; +} + +.file-status.file-working { background: url('../../../assets/plupload/jquery.plupload.queue/img/throbber.gif'); } + +.file-status.file-uploaded { + background: url('../../../assets/plupload/jquery.plupload.queue/img/done.gif'); +} + +.file-status.file-error { + background: url('../../../assets/plupload/jquery.plupload.queue/img/error.gif'); +} + +.file-status { + display: inline-block; + height: 16px; + width: 16px; +} -- cgit v1.2.1 From 708622a0bba1656f8538767ab8d0e0260075dddc Mon Sep 17 00:00:00 2001 From: Cesar G Date: Wed, 27 Nov 2013 13:50:52 -0800 Subject: [ticket/11915] Do not display the "Place inline" button when JS is disabled. PHPBB3-11915 --- phpBB/styles/prosilver/theme/plupload.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/styles/prosilver/theme') diff --git a/phpBB/styles/prosilver/theme/plupload.css b/phpBB/styles/prosilver/theme/plupload.css index b296e61e74..b5edea5f15 100644 --- a/phpBB/styles/prosilver/theme/plupload.css +++ b/phpBB/styles/prosilver/theme/plupload.css @@ -32,7 +32,7 @@ float: right; } -#attach-row-tpl { +#attach-row-tpl, .nojs .file-inline-bbcode { display: none; } -- cgit v1.2.1 From f858ec1f56431bd1001eb686ccf972ae3577d16c Mon Sep 17 00:00:00 2001 From: Cesar G Date: Wed, 27 Nov 2013 15:34:23 -0800 Subject: [ticket/11915] Fix various problems with responsive design. PHPBB3-11915 --- phpBB/styles/prosilver/theme/responsive.css | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'phpBB/styles/prosilver/theme') diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index 397ff12942..bfa2448296 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -499,6 +499,10 @@ fieldset.display-actions { margin: 0 25px; } +.attach-comment dfn { + width: 100%; +} + @media only screen and (max-width: 500px), only screen and (max-device-width: 500px) { p.responsive-center { @@ -526,4 +530,9 @@ fieldset.display-actions { display: block; margin-bottom: 5px; } + + .attach-controls { + margin-top: 5px; + width: 100%; + } } -- cgit v1.2.1 From 702efc849694f6acc15f60e0398b938b4021d7af Mon Sep 17 00:00:00 2001 From: Cesar G Date: Wed, 18 Dec 2013 17:56:46 -0800 Subject: [ticket/11915] Remove files that are no longer used. PHPBB3-11915 --- phpBB/styles/prosilver/theme/plupload.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'phpBB/styles/prosilver/theme') diff --git a/phpBB/styles/prosilver/theme/plupload.css b/phpBB/styles/prosilver/theme/plupload.css index b5edea5f15..8569eca662 100644 --- a/phpBB/styles/prosilver/theme/plupload.css +++ b/phpBB/styles/prosilver/theme/plupload.css @@ -58,15 +58,15 @@ } .file-status.file-working { - background: url('../../../assets/plupload/jquery.plupload.queue/img/throbber.gif'); + background: url('../../../assets/plupload/img/throbber.gif'); } .file-status.file-uploaded { - background: url('../../../assets/plupload/jquery.plupload.queue/img/done.gif'); + background: url('../../../assets/plupload/img/done.gif'); } .file-status.file-error { - background: url('../../../assets/plupload/jquery.plupload.queue/img/error.gif'); + background: url('../../../assets/plupload/img/error.gif'); } .file-status { -- cgit v1.2.1