Skip to content

Commit c069ad2

Browse files
authored
Merge pull request #156 from 10up/maintainance-notice
Change Support Status to Archived
2 parents f557934 + 5fd630c commit c069ad2

File tree

5 files changed

+52
-7
lines changed

5 files changed

+52
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> A library of barebones front-end components built with WordPress and accessibility in mind.
44
5-
[![Support Level](https://img.shields.io/badge/support-active-green.svg)](#support-level) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5+
[![Support Level](https://img.shields.io/badge/support-archived-red.svg)](#support-level) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
66
[![codecov](https://codecov.io/gh/10up/component-library/branch/develop/graph/badge.svg?token=rm4ggtw19O)](https://codecov.io/gh/10up/component-library)
77

88

@@ -31,7 +31,7 @@ To use a component, navigate to the component’s detail page to see demos, usag
3131

3232
## Support Level
3333

34-
**Active:** 10up is actively working on this, and we expect to continue work for the foreseeable future including keeping tested up to the most recent version of WordPress. Bug reports, feature requests, questions, and pull requests are welcome.
34+
**Archived:** This project is no longer maintained by 10up. We are no longer responding to Issues or Pull Requests unless they relate to security concerns. We encourage interested developers to fork this project and make it their own!
3535

3636
## Repository Structure and Engineering Guidelines
3737
Visit the [CONTRIBUTING](/CONTRIBUTING.md) page for initial contribution and engineering guidance.

docs/Gemfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
source 'https://rubygems.org'
22

3-
require 'json'
4-
require 'open-uri'
5-
versions = JSON.parse(open('https://pages.github.com/versions.json').read)
6-
7-
gem 'github-pages', versions['github-pages']
3+
gem 'github-pages', '~> 228'
4+
gem 'jekyll', '~> 3.9.0'
5+
gem 'webrick', '~> 1.7'

docs/_includes/header.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,8 @@
3939
</div>
4040
</header>
4141

42+
<div class="c-maintenance-banner">
43+
<p><strong>Notice:</strong> This site is no longer being actively maintained. We are aiming to open source new internal component packages and systems in the future.</p>
44+
</div>
45+
4246
<main class="main page-{{page.title}}" id="main" role="main">

docs/assets/css/sass/components/_index.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
@import "example-inline";
99
@import "iframe";
1010
@import "main";
11+
@import "maintenance-banner";
1112
@import "meta";
1213
@import "nav";
1314
@import "syntax-highlight";
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.c-maintenance-banner {
2+
background: #fef3cd;
3+
border-bottom: 1px solid #fdc935;
4+
color: #856404;
5+
padding: $spacing-small $spacing-medium;
6+
text-align: center;
7+
position: relative;
8+
z-index: $elevation-mid;
9+
10+
@media (min-width: $breakpoint-small) {
11+
margin-left: 260px;
12+
}
13+
14+
@media (min-width: $breakpoint-medium) {
15+
margin-left: 310px;
16+
}
17+
18+
p {
19+
margin: 0;
20+
font-size: $font-size-tiny;
21+
max-width: none;
22+
23+
@media (min-width: $breakpoint-small) {
24+
font-size: $font-size-xsmall;
25+
}
26+
}
27+
28+
a {
29+
color: #495057;
30+
text-decoration: underline;
31+
font-weight: $font-weight-medium;
32+
33+
&:hover,
34+
&:focus {
35+
color: #212529;
36+
}
37+
}
38+
39+
strong {
40+
font-weight: $font-weight-medium;
41+
}
42+
}

0 commit comments

Comments
 (0)