Skip to content

Commit

Permalink
micro-MVC (4.2.7)
Browse files Browse the repository at this point in the history
  • Loading branch information
g0d committed Feb 5, 2024
1 parent ef15fff commit b91115f
Show file tree
Hide file tree
Showing 8 changed files with 395 additions and 88 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![alt tag](https://github.com/g0d/micro-MVC/blob/master/site/pix/micro_mvc.png)

# micro-MVC (4.2.6)
# micro-MVC (4.2.7)

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/889562a17e174c438fd56d35780822b0)](https://app.codacy.com/gh/g0d/micro-MVC/dashboard)

Expand Down
30 changes: 25 additions & 5 deletions framework/extensions/js/core/msgbox/msgbox.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Description: This file contains the MsgBox - CSS.
Coded by George Delaportas (G0D)
Copyright (C) 2017 - 2023
Copyright (C) 2017 - 2024
Open Software License (OSL 3.0)
*/

Expand Down Expand Up @@ -62,15 +62,21 @@
margin-bottom: 10px;
}

#msgbox_button
#msgbox_buttons_area
{
width: 40%;
margin: auto;
}

.msgbox_button
{
color: #d8d8d8;
background-color: #45454a;
text-align: center;
border: solid 1px #9e4444;
border: solid 1px #8f8f8f;
border-radius: 6px;
cursor: pointer;
width: 24%;
width: 34%;
margin-left: auto;
margin-right: auto;
padding: 8px;
Expand All @@ -79,14 +85,28 @@
transition: background .25s ease-in-out;
}

#msgbox_button:hover
.msgbox_button:hover
{
background-color: #5b5a63;
-moz-transition: background .25s ease-in-out;
-webkit-transition: background .25s ease-in-out;
transition: background .25s ease-in-out;
}

.mb_buttons_triple
{
width: 67% !important;
height: 38px;
}

.mb_triple
{
float: left;
width: 20%;
margin-left: 10px;
margin-right: 10px;
}

.mb_fade_in
{
-moz-animation: info_fade_in 0.25s ease-in forwards;
Expand Down
Loading

0 comments on commit b91115f

Please sign in to comment.