-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
32 changes: 30 additions & 2 deletions
32
source/nuPickers/Shared/PagedListPicker/PagedListPickerEditor.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,41 @@ | ||
| ||
/* pull styling up from the .selectable ul in to this new wrapper*/ | ||
.paged-list-picker .selectable-and-pager { | ||
|
||
width:48%; | ||
float: left; | ||
|
||
} | ||
|
||
/* reset .selectable to fill wrapper */ | ||
.paged-list-picker .selectable { | ||
width:100%; | ||
} | ||
|
||
|
||
.paged-list-picker .paging-buttons { | ||
margin: 20px 0; | ||
text-align: center; | ||
list-style: none; | ||
} | ||
|
||
.paged-list-picker .paging-buttons li { | ||
display: inline; | ||
line-height: 20px; | ||
} | ||
|
||
.paged-list-picker .paging-buttons li a { | ||
display: inline-block; | ||
padding: 0 10px; | ||
background-color: #fff; | ||
border: 1px solid #ddd; | ||
border-radius: 15px; | ||
} | ||
|
||
.paged-list-picker .paging-buttons li a:hover, | ||
.paged-list-picker .paging-buttons li a:focus { | ||
text-decoration:none; | ||
} | ||
|
||
.paged-list-picker .paging-buttons li a:hover, | ||
.paged-list-picker .paging-buttons li.active a { | ||
background-color:#f5f5f5; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters