-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update mod_jem to use the Joomla's layouts techniques #1813
First module with layouts in the module, add example of table layout.
- Loading branch information
Showing
13 changed files
with
600 additions
and
139 deletions.
There are no files selected for viewing
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
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
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/** | ||
* @package JEM | ||
* @subpackage JEM Latest Events Basic Module | ||
* @copyright (C) 2013-2024 joomlaeventmanager.net | ||
* @copyright (C) 2005-2009 Christoph Lukes | ||
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL | ||
*/ | ||
|
||
.jemmodulebasic i { | ||
padding-right:10px; | ||
} | ||
|
||
#jemmodulebasic-tableadvanced table { | ||
width: 100%; | ||
border-collapse: collapse; | ||
font-family: Arial, sans-serif; | ||
font-size: 14px; | ||
background-color: #f9f9f9; | ||
margin: 20px 0; | ||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
#jemmodulebasic-tableadvanced tr:nth-child(even) { | ||
background-color: #f1f1f1; | ||
} | ||
|
||
#jemmodulebasic-tableadvanced tr:hover { | ||
background-color: #eaeaea; | ||
} | ||
|
||
#jemmodulebasic-tableadvanced th, | ||
#jemmodulebasic-tableadvanced td { | ||
padding: 12px 15px; | ||
text-align: left; | ||
border: 1px solid #ddd; | ||
text-align: center; | ||
} | ||
|
||
#jemmodulebasic-tableadvanced th { | ||
background-color: #4CAF50; | ||
color: white; | ||
font-weight: bold; | ||
} | ||
|
||
#jemmodulebasic-tableadvanced td { | ||
color: #333; | ||
} | ||
|
||
#jemmodulebasic-tableadvanced caption { | ||
caption-side: top; | ||
font-size: 18px; | ||
font-weight: bold; | ||
padding: 10px; | ||
color: #555; | ||
} | ||
|
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/** | ||
* @package JEM | ||
* @subpackage JEM Latest Events Basic Module | ||
* @copyright (C) 2013-2024 joomlaeventmanager.net | ||
* @copyright (C) 2005-2009 Christoph Lukes | ||
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL | ||
*/ | ||
|
||
|
||
#jemmodulebasic-tablestyle table { | ||
width: 100%; | ||
border-collapse: collapse; | ||
font-family: Arial, sans-serif; | ||
font-size: 14px; | ||
background-color: #f9f9f9; | ||
margin: 20px 0; | ||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
#jemmodulebasic-tablestyle tr:nth-child(even) { | ||
background-color: #f1f1f1; | ||
} | ||
|
||
#jemmodulebasic-tablestyle tr:hover { | ||
background-color: #eaeaea; | ||
} | ||
|
||
#jemmodulebasic-tablestyle th, | ||
#jemmodulebasic-tablestyle td { | ||
padding: 12px 15px; | ||
text-align: left; | ||
border: 1px solid #ddd; | ||
} | ||
|
||
#jemmodulebasic-tablestyle th { | ||
background-color: #4CAF50; | ||
color: white; | ||
font-weight: bold; | ||
} | ||
|
||
#jemmodulebasic-tablestyle td { | ||
color: #333; | ||
} | ||
|
||
#jemmodulebasic-tablestyle caption { | ||
caption-side: top; | ||
font-size: 18px; | ||
font-weight: bold; | ||
padding: 10px; | ||
color: #555; | ||
} | ||
|
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/** | ||
* @package JEM | ||
* @subpackage JEM Latest Events Basic Module | ||
* @copyright (C) 2013-2024 joomlaeventmanager.net | ||
* @copyright (C) 2005-2009 Christoph Lukes | ||
* @license https://www.gnu.org/licenses/gpl-3.0 GNU/GPL | ||
*/ | ||
|
||
|
||
#jemmodulebasic-table table { | ||
|
||
} | ||
|
||
#jemmodulebasic-table tr:nth-child(even) { | ||
|
||
} | ||
|
||
#jemmodulebasic-table tr:hover { | ||
background-color: #eaeaea; | ||
} | ||
|
||
#jemmodulebasic-table th { | ||
|
||
} | ||
|
||
#jemmodulebasic-table td { | ||
padding: 0 10px; | ||
} | ||
|
||
#jemmodulebasic-table caption { | ||
|
||
} | ||
|
Oops, something went wrong.