forked from civicrm/civicrm-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extensions table fixes in #5 and civicrm#11, create overwrite file fo…
…r admin.css, some more docs in readme
- Loading branch information
Showing
13 changed files
with
144 additions
and
97 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
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,103 @@ | ||
/* civicrm-core/css/admin.css - branched on 7 Jun 24 | ||
Styles specific to certain admin pages/forms */ | ||
|
||
/* Config Task List */ | ||
.crm-container td.tasklist a { | ||
font-weight: var(--crm-bold-weight); | ||
font-family: var(--crm-font-bold); | ||
} | ||
.crm-container table.selector td.tasklist { | ||
border-right: var(--crm-table-row-border); | ||
width: 20%; | ||
} | ||
.crm-container td.tasklist a:link { | ||
color: var(--crm-c-red); | ||
} | ||
.crm-container td.tasklist a:visited { | ||
color: var(--crm-c-green); | ||
} | ||
|
||
/* Class for successful upgrade */ | ||
.crm-container .upgrade-success { | ||
background-color: var(--crm-alert-background-help); | ||
color: var(--crm-alert-text-help); | ||
} | ||
|
||
/* Extension management */ | ||
.crm-container #mainTabContainer:has(.crm-extensions-tabs-list) { | ||
box-shadow: var(--crm-block-shadow); | ||
margin-top: var(--crm-padding-reg); | ||
} | ||
.crm-container #extensions-main, | ||
.crm-container #extensions-addnew.ui-tabs-panel { | ||
padding: 0; | ||
border: var(--crm-tabs-border); | ||
border-top: 0; | ||
} | ||
.crm-container #extensions-main table.dataTable, | ||
.crm-container #extensions-addnew table.dataTable { | ||
box-shadow: none; | ||
border: 0 solid transparent; | ||
} | ||
.crm-container #extensions-main table.dataTable th, | ||
.crm-container #extensions-addnew table.dataTable th { | ||
background-color: var(--crm-tab-bg-active); | ||
min-width: max-content; | ||
white-space: nowrap; /* prevents wrapping of sort icons with oversized descriptions */ | ||
} | ||
.crm-container #extensions-main table.dataTable summary, | ||
.crm-container #extensions-addnew table.dataTable summary { | ||
padding: 0; | ||
background-color: unset; | ||
color: var(--crm-c-text); | ||
font-weight: unset; | ||
} | ||
.crm-container #extensions table.dataTable summary a, | ||
.crm-container #extensions-addnew table.dataTable summary a { | ||
color: var(--crm-c-link); | ||
} | ||
.crm-container #extensions table.dataTable a.crm-hover-button, | ||
.crm-container #extensions-addnew table.dataTable a.crm-hover-button { | ||
padding: 0 var(--crm-m1); | ||
} | ||
.crm-container .disabled .crm-hover-button:hover, | ||
.crm-container .disabled .crm-hover-button:focus { | ||
color: var(--crm-c-secondary-text); | ||
} | ||
.crm-container .extension-missing { | ||
color: var(--crm-c-warning); | ||
} | ||
.crm-container .crm-extensions-upgrade { | ||
background: var(--crm-alert-background-warning); | ||
border: 1px solid var(--crm-alert-border-warning); | ||
padding: var(--crm-padding-small); | ||
border-radius: var(--crm-roundness); | ||
} | ||
.crm-container .crm-extensions-version { | ||
white-space: nowrap; | ||
} | ||
.crm-container .crm-extensions-stage { | ||
margin-left: var(--crm-s); | ||
} | ||
.crm-container .crm-extensions-stage.fa-flask { | ||
color: var(--crm-c-warning); | ||
} | ||
.crm-container .crm-extensions-stage.fa-check-circle { | ||
color: var(--crm-c-success); | ||
} | ||
|
||
@media screen and (min-width: 480px) { | ||
#crm-container .admin-section-items { | ||
column-count: 2; | ||
column-gap: 1em; | ||
} | ||
#crm-container .admin-section-items dl { | ||
-webkit-column-break-inside: avoid; | ||
page-break-inside: avoid; | ||
break-inside: avoid; | ||
margin: 0 1em; | ||
} | ||
#crm-container .admin-section-items dt { | ||
font-weight: bold; | ||
} | ||
} |
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 @@ | ||
@import url(../../../core/css/sections/_admin.css) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import url(../../../core/css/sections/_admin.css) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
@import url(../../../core/css/archive/_admin.css) | ||
@import url(../../../core/css/sections/_admin.css) |