Compare commits

...

16 Commits

Author SHA1 Message Date
Sabina Talipova 88fe457a90 Merge 3.2 into master 2022-12-16 11:58:33 +13:00
Guy Sartorelli 64680a4683
Merge pull request #72 from creative-commoners/pulls/master/remove-branch-alias
DEP Remove branch alias
2022-08-09 11:47:34 +12:00
Steve Boyd 12309dd08f DEP Remove branch alias 2022-08-09 11:03:19 +12:00
Steve Boyd d1a0e9ac7c Merge branch '3.1' into 3.2 2022-08-02 18:41:41 +12:00
Guy Sartorelli ac99fc50e6
Merge pull request #71 from creative-commoners/pulls/3.1/standardise-modules
MNT Standardise modules
2022-08-02 14:35:53 +12:00
Steve Boyd 30a6fca74a MNT Standardise modules 2022-08-01 10:01:40 +12:00
Daniel Hensby 38e53dccb2
Merge pull request #69 from Michael-HEIW/fix-a11y
FIX Add accessibility fixes
2022-03-29 08:53:51 +01:00
Michael Pritchard (HEIW) dcb26096f5 Add accessibility fixes
- Make the font colour in the footer darker
- change the hamburger span in the header to a button
- update the javascript to select the button
- update the meta viewport to the latest recommended method
- Undo unrelated changes
2021-10-04 11:09:58 +01:00
Damian Mooyman dd28f3f3c2
Merge pull request #67 from manuth/master
Use the `$ThemeDir` variable instead of a static path
2019-04-29 10:14:38 +12:00
Manuel Thalmann 295e85fa5d Use `$resourceURL` instead of `$ThemeDir` 2019-04-25 09:36:34 +02:00
Manuel Thalmann cec5126dbc Use the `$ThemeDir` variable instead of a static path
This commit fixes issue #66.
2019-04-15 16:58:16 +02:00
Robbie Averill 319197a30e
Merge pull request #63 from jrson83/master
UserForms radio button required fix
2018-12-20 09:06:28 +00:00
Jrson 0328ca9155
UserForms radio button required fix
silverstripe/silverstripe-userforms#840
2018-12-20 09:45:05 +01:00
Serge Latyntsev ca2e630a12
Merge pull request #59 from open-sausages/pulls/3.2/in-the-box-to-the-left
Update text alignment class names
2018-11-12 10:56:45 +13:00
Luke Edwards 374679f873 Update text alignment class names 2018-11-05 09:05:13 +13:00
Daniel Hensby 64ec4e16e0
Update branch alias 2018-06-29 11:48:05 +01:00
9 changed files with 32 additions and 29 deletions

View File

@ -1,6 +1,6 @@
# Using the Simple theme
* Copy the theme into the `themes/` directory of your SilverStripe project. If you've named it correctly, there should be a directory called `themes/simple/templates`.
* Copy the theme into the `themes/` directory of your Silverstripe project. If you've named it correctly, there should be a directory called `themes/simple/templates`.
* Add the following to your `mysite/_config.php` file. Remove any existing `SSViewer::set_theme` lines.

View File

@ -2,11 +2,14 @@
"name": "silverstripe-themes/simple",
"description": "The SilverStripe simple theme (default SilverStripe 3 theme)",
"type": "silverstripe-theme",
"keywords": ["silverstripe", "theme"],
"keywords": [
"silverstripe",
"theme"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sara Tušar (Innovaif)",
"name": "Sara Tu\u0161ar (Innovaif)",
"homepage": "http://www.saratusar.com"
}
],
@ -14,15 +17,12 @@
"composer/installers": "*",
"silverstripe/framework": ">=3.5"
},
"extra": {
"branch-alias": {
"dev-master": "3.2.x-dev"
},
"extra": {
"expose": [
"css",
"images",
"javascript",
"webfonts"
]
}
}
}

View File

@ -198,7 +198,7 @@ form .date .middleColumn input {
font-size: 13px; /* reset to default */
color: #333; /* reset to default */
}
form .requiredField label.left:after { /* pseudo element adds an asterisk to a required fields label */
form .requiredField label.left:after, form .requiredField legend.left:after { /* pseudo element adds an asterisk to a required fields label */
color: #B94A48;
content: "*";
font-size: 14px;

View File

@ -424,14 +424,14 @@ body h1 span.amp {
/* FOOTER */
.footer {
color: #999;
color: #6B6B6B;
background: #ededed;
padding: 20px 0;
font-size: 11px;
line-height: 22px;
}
.footer a {
color: #999;
color: #6B6B6B;
}
.footer a:hover {
color: #B90000;
@ -521,7 +521,7 @@ body h1 span.amp {
display:table; /* displays the pagination as a table so that elements stay inline and the middle column adjusts its size to accomodate and the right arrow stays to the right */
width:100%;
}
.searchResults #PageNumbers .pagination span{
.searchResults #PageNumbers .pagination button{
display:table-cell; /* each element in the pagination div displays as a table cell */
}
.searchResults #PageNumbers p {
@ -593,7 +593,7 @@ body h1 span.amp {
padding-right: 100px; /* padding stops .brand text from overlapping the search and nav buttons */
}
.tablet-nav .header {
padding: 0px;
padding: 0;
}
.tablet-nav .header .inner {
padding: 20px 0 0 0;
@ -611,6 +611,9 @@ body h1 span.amp {
font-family: 'WebSymbolsRegular';
font-size: 20px;
color: #ededed;
background: #000;
margin-top: 0;
padding: 0;
}
.tablet-nav .header .primary ul {
z-index: 10;
@ -637,7 +640,7 @@ body h1 span.amp {
position: absolute;
right: 20px;
top: 0px;
font-family: 'WebSymbolsRegular';
font-family: 'WebSymbolsRegular';
font-size: 14px;
color: #999;
text-align: center;

View File

@ -93,12 +93,12 @@ body {
}
/* LINKS */
.typography a,
.typography a,
.typography a.intro {
color: #B80000;
text-decoration: none;
}
.typography a:hover {
.typography a:hover {
color: #D80000;
border-bottom: 1px dashed #B80000;
}
@ -107,7 +107,7 @@ body {
/* LIST STYLES
-------------------------------------------- */
.typography ul,
.typography ul,
.typography ol,
.typography dl { margin: 0 0 20px 25px; }
.typography ul li { list-style-type: disc; } /* adds disc style bullet to the list */
@ -142,20 +142,20 @@ body {
}
/* WYSIWYG EDITOR ALIGNMENT CLASSES
/* WYSIWYG EDITOR ALIGNMENT CLASSES
-------------------------------------------- */
.typography .left {
.typography .text-left {
text-align: left
}
.typography .center {
.typography .text-center {
text-align: center
}
.typography .right {
.typography .text-right {
text-align: right
}
/* IMAGES
/* IMAGES
-------------------------------------------- */
.typography img {
border: 5px solid #d7d7d7;
@ -265,4 +265,4 @@ body {
address {
display: block;
margin-bottom: 20px;
}
}

View File

@ -6,9 +6,9 @@ jQuery.noConflict();
$('#SearchForm_SearchForm_action_results').val('L');
if (!$.browser.msie || ($.browser.msie && (parseInt($.browser.version, 10) > 8))) {
var searchBarButton = $("span.search-dropdown-icon");
var searchBarButton = $("button.search-dropdown-icon");
var searchBar = $('div.search-bar');
var menuButton = $("span.nav-open-button");
var menuButton = $("button.nav-open-button");
var menu = $('.header .primary ul');
var mobile = false;
var changed = false;

View File

@ -8,7 +8,7 @@
<% end_if %>
</a>
<% if $SearchForm %>
<span class="search-dropdown-icon">L</span>
<button class="search-dropdown-icon">L</button>
<div class="search-bar">
$SearchForm
</div>

View File

@ -1,5 +1,5 @@
<nav class="primary">
<span class="nav-open-button">²</span>
<button class="nav-open-button">²</button>
<ul>
<% loop $Menu(1) %>
<li class="$LinkingMode"><a href="$Link" title="$Title.XML">$MenuTitle.XML</a></li>

View File

@ -16,7 +16,7 @@ Change it, enhance it and most importantly enjoy it!
<% base_tag %>
<title><% if $MetaTitle %>$MetaTitle<% else %>$Title<% end_if %> &raquo; $SiteConfig.Title</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
$MetaTags(false)
<!--[if lt IE 9]>
@ -26,7 +26,7 @@ Change it, enhance it and most importantly enjoy it!
<% require themedCSS('typography') %>
<% require themedCSS('form') %>
<% require themedCSS('layout') %>
<link rel="shortcut icon" href="themes/simple/images/favicon.ico" />
<link rel="shortcut icon" href="$resourceURL('themes/simple/images/favicon.ico')" />
</head>
<body class="$ClassName.ShortName<% if not $Menu(2) %> no-sidebar<% end_if %>" <% if $i18nScriptDirection %>dir="$i18nScriptDirection"<% end_if %>>
<% include Header %>