Skip to content

Commit

Permalink
Update CSS for buttons
Browse files Browse the repository at this point in the history
- See #103.
  • Loading branch information
martignoni committed Aug 2, 2022
1 parent 3a47ece commit 95857bc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 25 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/) and follow principles of [keep a changelog](https://keepachangelog.com).

## Version 2.13.0, 2022-08-02

### Changed
- Make the footer buttons visible again (issue #103).

## Version 2.12.0, 2022-04-23

### Fixed
Expand Down
25 changes: 3 additions & 22 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,31 +40,12 @@ table#moodleboxstatus tr.subinfo td.c0 {
}

input#id_restartbutton, input#id_resizepartitionbutton {
color: #fff;
background-color: #faa732;
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
background-image: -o-linear-gradient(top, #fbb450, #f89406);
background-image: linear-gradient(to bottom, #fbb450, #f89406);
background-repeat: repeat-x;
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
border-color: rgba(248, 148, 6, 0.1) rgba(248, 148, 6, 0.1) rgba(173, 103, 4, 0.25);
filter: progid:dximagetransform.microsoft.gradient(enabled = false);
color: #1d2125;
background-color: #ced4da;
border-color: #ced4da;
}

input#id_shutdownbutton {
color: #fff;
background-color: #da4f49;
background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
background-repeat: repeat-x;
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
border-color: rgba(189, 54, 47, 0.1) rgba(189, 54, 47, 0.1) rgba(128, 36, 32, 0.25);
filter: progid:dximagetransform.microsoft.gradient(enabled = false);
}

#footerbuttons {
Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@

$plugin = new stdClass();

$plugin->version = 2022080200;
$plugin->release = '2.13.0-beta';
$plugin->version = 2022080201;
$plugin->release = '2.13.0';
$plugin->requires = 2018120300;
$plugin->supported = [36, 400];
$plugin->maturity = MATURITY_BETA;
$plugin->maturity = MATURITY_STABLE;
$plugin->component = 'tool_moodlebox';

0 comments on commit 95857bc

Please sign in to comment.