Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
WCMS
uw_wcms_gesso
Commits
7c956f66
Commit
7c956f66
authored
Aug 03, 2021
by
Martin Leblanc
Committed by
Kevin Paxman
Aug 19, 2021
Browse files
adding css for the views pagination
parent
a257e81a
Changes
4
Hide whitespace changes
Inline
Side-by-side
css/styles.css
View file @
7c956f66
...
...
@@ -8332,6 +8332,11 @@ html:not(.js) .uw-tabcontent[role="tabpanel"][hidden] {
grid-column
:
1
/
3
;
grid-row
:
1
/
2
;
width
:
100%
;
}
.view-pager
{
grid-column
:
1
/
2
;
grid-row
:
3
/
4
;
margin
:
1.5rem
0
;
width
:
100%
;
}
.view-content
{
display
:
flex
;
-webkit-flex-flow
:
row
wrap
;
...
...
@@ -8363,6 +8368,11 @@ html:not(.js) .uw-tabcontent[role="tabpanel"][hidden] {
grid-column
:
1
/
2
;
grid-row
:
2
/
3
;
width
:
100%
;
}
.view.with-filters
.view-pager
{
grid-column
:
1
/
2
;
grid-row
:
3
/
4
;
margin
:
1.5rem
0
;
width
:
100%
;
}
.view.with-filters
.view-filters
{
background
:
#fff
;
grid-column
:
2
/
3
;
...
...
css/styles.min.css
View file @
7c956f66
This source diff could not be displayed because it is too large. You can
view the blob
instead.
js/component_scripts.min.js
View file @
7c956f66
/**
* @file
* Ckeditor Modal.
*/
(
function
(
$
,
Drupal
)
{
if
(
$
.
ui
&&
$
.
ui
.
dialog
)
{
orig_allowInteraction
=
$
.
ui
.
dialog
.
prototype
.
_allowInteraction
;
$
.
ui
.
dialog
.
prototype
.
_allowInteraction
=
function
(
event
)
{
if
(
$
(
event
.
target
).
closest
(
'
.cke_dialog
'
).
length
)
{
return
true
;
}
return
orig_allowInteraction
.
apply
(
this
,
arguments
);
};
}
})(
jQuery
,
Drupal
);
/**
* @file
*/
...
...
@@ -373,23 +390,6 @@ else {
};
})(
jQuery
);
/**
* @file
* Ckeditor Modal.
*/
(
function
(
$
,
Drupal
)
{
if
(
$
.
ui
&&
$
.
ui
.
dialog
)
{
orig_allowInteraction
=
$
.
ui
.
dialog
.
prototype
.
_allowInteraction
;
$
.
ui
.
dialog
.
prototype
.
_allowInteraction
=
function
(
event
)
{
if
(
$
(
event
.
target
).
closest
(
'
.cke_dialog
'
).
length
)
{
return
true
;
}
return
orig_allowInteraction
.
apply
(
this
,
arguments
);
};
}
})(
jQuery
,
Drupal
);
/**
* @file
*/
...
...
source/_patterns/04-components/view/_view.scss
View file @
7c956f66
...
...
@@ -50,10 +50,10 @@ $sidebar-width: 18.75rem;
}
&
-pager
{
//
grid-column:1/2;
//
grid-row:3/4;
//
margin: rem(gesso-spacing(md)) 0;
//
width:100%;
grid-column
:
1
/
2
;
grid-row
:
3
/
4
;
margin
:
rem
(
gesso-spacing
(
md
))
0
;
width
:
100%
;
}
&
-content
{
@include
uw-flex-grid
();
...
...
@@ -90,10 +90,10 @@ $sidebar-width: 18.75rem;
width
:
100%
;
}
.view-pager
{
//
grid-column:1/2;
//
grid-row:3/4;
//
margin: rem(gesso-spacing(md)) 0;
//
width:100%;
grid-column
:
1
/
2
;
grid-row
:
3
/
4
;
margin
:
rem
(
gesso-spacing
(
md
))
0
;
width
:
100%
;
}
.view-filters
{
h2
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment