Bugzilla – Attachment 77621 Details for
Bug 19474
Convert staff client CSS to SCSS
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19474: (follow-up) Bring scss up to date with latest CSS changes
Bug-19474-follow-up-Bring-scss-up-to-date-with-lat.patch (text/plain), 8.88 KB, created by
Owen Leonard
on 2018-08-09 13:15:25 UTC
(
hide
)
Description:
Bug 19474: (follow-up) Bring scss up to date with latest CSS changes
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2018-08-09 13:15:25 UTC
Size:
8.88 KB
patch
obsolete
>From c4bdb816b2758f0d8b0caeacaaa1412355af88aa Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Mon, 23 Jul 2018 16:24:00 +0000 >Subject: [PATCH] Bug 19474: (follow-up) Bring scss up to date with latest CSS > changes > >This patch catches the scss up to the latest changes in master: > >Bug 19946 >Bug 20045 >Bug 20343 >Bug 18327 >Bug 20322 >Bug 18799 >Bug 20622 >Bug 20329 >Bug 20744 >Bug 20931 >Bug 20793 >Bug 20651 >Bug 20668 >Bug 16575 >Bug 19166 >Bug 20770 >Bug 21163 >Bug 20779 >--- > .../intranet-tmpl/prog/css/src/staff-global.scss | 263 +++++++++++++++++++-- > 1 file changed, 238 insertions(+), 25 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss >index e4bd5f1..b17c6e4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss >+++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss >@@ -111,6 +111,8 @@ a { > &.document { > background-position: left middle; > background-repeat: no-repeat; >+ display: inline-block; >+ min-height: 20px; > padding-left: 20px; > } > >@@ -153,6 +155,76 @@ a { > > } > >+aside { >+ h5 { >+ font-size : 100%; >+ margin : .5em 0; >+ } >+ >+ fieldset { >+ &.brief { >+ margin: 0; >+ padding : .4em .7em; >+ >+ fieldset { >+ margin: 0; >+ padding: .5em 0; >+ >+ legend { >+ font-size: 85%; >+ } >+ } >+ >+ li { >+ &.checkbox { >+ label { >+ display: inline; >+ } >+ } >+ >+ &.dateinsert { >+ label { >+ display: inline; >+ } >+ span { >+ &.label { >+ display: inline >+ } >+ } >+ } >+ >+ &.radio { >+ input { >+ padding: .3em 0; >+ } >+ label { >+ display: inline; >+ } >+ >+ padding: .7em 0; >+ >+ span { >+ &.label { >+ display: inline; >+ } >+ } >+ } >+ } >+ >+ ol { >+ font-size : 85%; >+ margin : 0; >+ padding : 0; >+ } >+ >+ select, >+ input[type="text"] { >+ width: 100%; >+ } >+ } >+ } >+} >+ > button { > @include default-button; > >@@ -172,6 +244,19 @@ button { > } > } > >+main { >+ .yui-b { >+ fieldset { >+ &.brief { >+ input[type="text"], >+ select { >+ width: auto; >+ } >+ } >+ } >+ } >+} >+ > table { > border-collapse: collapse; > border-right: 1px solid #BCBCBC; >@@ -333,6 +418,10 @@ h6 { > margin: .3em 0; > } > >+hr { >+ clear: both; >+} >+ > p { > margin: .5em 0 .5em 0; > } >@@ -483,6 +572,10 @@ label, > > a { > text-decoration: none; >+ >+ &.current { >+ font-weight: bold; >+ } > } > } > } >@@ -611,6 +704,11 @@ ol { > width: 100%; > } > >+.cart-controls { >+ border-top: 1px solid #E8E8E8; >+ padding: 7px 0; >+} >+ > .clearfix { > display: inline-block; > >@@ -852,6 +950,7 @@ fieldset { > display: block; > font-weight: bold; > padding: .3em 0; >+ text-align: left; > } > } > } >@@ -936,7 +1035,7 @@ fieldset { > font-weight: bold; > margin-right: 1em; > text-align: right; >- width: 6em; >+ width: 9em; > > .error { > float: none; >@@ -1070,6 +1169,16 @@ fieldset { > } > } > >+#multi_receiving { >+ fieldset { >+ &.rows { >+ label { >+ width: 50%; >+ } >+ } >+ } >+} >+ > .yui-u { > div { > .hint { >@@ -1120,6 +1229,34 @@ legend { > width: auto; > } > >+details { >+ > summary { >+ cursor: pointer; >+ >+ &::before { >+ content: "\f0da"; >+ display: inline-block; >+ font-family: FontAwesome; >+ width: 1em; >+ } >+ >+ &.checkouts-by-itemtype { >+ li { >+ display: inline-block; >+ } >+ } >+ } >+} >+ >+details[open] { >+ > summary { >+ &::before { >+ content: "\f0d7"; >+ } >+ } >+} >+ >+ > #floating-save { > background-color: rgba(185, 216, 217, .6); > bottom: 3%; >@@ -1647,8 +1784,9 @@ dd { > padding: 0; > } > >- select { >- width: 12em; >+ select, >+ input[type=text] { >+ width: 100%; > } > } > >@@ -1659,16 +1797,6 @@ dd { > } > } > >- label { >- width: 9em; >- } >- >- span { >- &.label { >- width: 9em; >- } >- } >- > td { > label { > width: auto; >@@ -1684,6 +1812,19 @@ dd { > } > } > >+#yui-main { >+ .yui-b { >+ fieldset { >+ &.brief { >+ select, >+ input[type=text] { >+ width: auto; >+ } >+ } >+ } >+ } >+} >+ > .btn-toolbar { > fieldset { > &.action { >@@ -1740,11 +1881,6 @@ dd { > overflow-y: auto; > } > >-#z3950_search_targets_auth { >- height: 348px; >- overflow-y: auto; >-} >- > .z3950checks { > padding-left: 1em; > } >@@ -2016,7 +2152,7 @@ i { > > > #logo { >- background: transparent url("../img/koha-logo-medium.gif") no-repeat scroll 0%; >+ background: transparent url("../img/koha-logo-medium.png") no-repeat scroll 0%; > margin: .75em .3em .75em .7em; > > a { >@@ -2070,6 +2206,10 @@ li { > > .address { > font-size: 110%; >+ >+ li { >+ list-style-type: none; >+ } > } > > .title { >@@ -2393,7 +2533,8 @@ li { > font-size: 105%; > line-height: 200%; > >- a { >+ a, >+ span { > background-color: #E4ECF5; > border: 1px solid #A4BEDD; > border-radius: 4px; >@@ -3332,9 +3473,14 @@ label { > } > > .modal-body { >+ background-color: #FFF; > overflow-y: auto; > } > >+.modal-content { >+ background-color : #EDF4F6; >+} >+ > .btn-group { > label, > select { >@@ -3527,6 +3673,21 @@ span { > } > } > >+ >+.result-biblio-itemtype { >+ float: right; >+ padding: .5em; >+ margin: .5em; >+ font-size: 85%; >+ text-align: center; >+ >+ img { >+ display: block; >+ margin: auto; >+ margin-bottom: 2px; >+ } >+} >+ > .browse-label, > .browse-prev-next { > border: 1px solid #B9D8D9; >@@ -3777,6 +3938,10 @@ span { > } > > #interlibraryloans { >+ #dataPreviewLabel { >+ margin: .3em 0; >+ } >+ > h1 { > margin: 1em 0; > } >@@ -3787,6 +3952,7 @@ span { > > h3 { > margin-top: 20px; >+ > } > > .bg-info { >@@ -3853,6 +4019,10 @@ span { > margin-bottom: 20px; > } > >+ .notesopac { >+ display: inline-block; >+ } >+ > .rows { > div { > height: 1em; >@@ -3860,11 +4030,11 @@ span { > } > } > >- #requestattributes { >- .label { >- width: auto; >- } >- } >+} >+ >+#requestattributes { >+ font-family: monospace; >+ line-height: 1.3em; > } > > #ill-requests { >@@ -3899,6 +4069,49 @@ span { > } > } > >+/* ==== MODULE LINKS - Start ==== */ >+ >+ul { >+ &.buttons-list { >+ /* List containing the module links */ >+ padding: 0; >+ margin-bottom: 30px; >+ >+ li { >+ /* Standard attributes for the list elements */ >+ list-style-type:none; >+ >+ a { >+ &.circ-button { >+ /* Class used for each module link */ >+ background-color: #F4F8F9; >+ background-position: 5px 3px; >+ background-repeat: no-repeat; >+ border: solid 2px #b9d8d9; >+ border-radius: 6px; >+ box-sizing: content-box; >+ color: #000000; >+ display: block; >+ font-size: 110%; >+ font-weight: bold; >+ max-width: 260px; >+ margin: .5em 0; >+ padding: 8px; >+ text-decoration: none; >+ >+ &:hover { >+ /* Class used for each module link hover state */ >+ border-color: #538200; >+ color: #538200; >+ } >+ } >+ } >+ } >+ } >+} >+ >+/* ==== MODULE LINKS - End ==== */ >+ > @media (min-width: 200px) { > .navbar-nav > li { > float: left; >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 19474
:
68211
|
69197
|
70315
|
70915
|
70916
|
70917
|
70944
|
70945
|
70946
|
70947
|
71055
|
71056
|
71057
|
71058
|
71059
|
71609
|
71610
|
71611
|
71612
|
71616
|
72444
|
72643
|
72677
|
72684
|
72685
|
72686
|
72776
|
72777
|
72778
|
72788
|
72789
|
72790
|
72791
|
73470
|
73471
|
73472
|
74724
|
74725
|
74757
|
74758
|
76657
|
77189
| 77621