2016-03-29 11:40:44 +03:00
|
|
|
/* Apps
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.apps-filter {
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
@media (max-width: 1460px) {
|
|
|
|
.apps-filter {
|
|
|
|
max-width: 700px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Main Layout
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2018-11-13 12:18:31 +03:00
|
|
|
.integrations-directory {
|
|
|
|
display: grid;
|
|
|
|
justify-content: space-between;
|
|
|
|
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
|
|
|
|
grid-gap: 25px;
|
2021-02-08 21:20:26 +03:00
|
|
|
background: var(--whitegrey-l1);
|
|
|
|
padding: 24px;
|
|
|
|
border-radius: 3px;
|
2018-11-13 12:18:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.id-item {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--darkgrey);
|
2019-06-18 13:47:21 +03:00
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0 3px 6px -2px rgba(0,0,0,.1);
|
|
|
|
background: var(--white);
|
|
|
|
transition: all .5s ease;
|
2018-11-13 12:18:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.id-item:hover {
|
2019-06-18 13:47:21 +03:00
|
|
|
transform: translateY(-2.5%);
|
2018-11-13 12:18:31 +03:00
|
|
|
box-shadow: 0 0 1px rgba(0,0,0,.02), 0 8px 26px -4px rgba(0,0,0,.08);
|
|
|
|
transition: all .3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.id-item-logo {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 38px;
|
2019-06-18 13:47:21 +03:00
|
|
|
width: 38px;
|
2018-11-13 12:18:31 +03:00
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2020-04-20 18:46:59 +03:00
|
|
|
.id-more svg circle {
|
|
|
|
stroke: var(--midlightgrey);
|
|
|
|
}
|
|
|
|
|
2018-11-13 12:18:31 +03:00
|
|
|
@media (max-width: 1320px) {
|
|
|
|
.integrations-directory {
|
|
|
|
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
|
|
|
|
}
|
|
|
|
.id-item:nth-child(7) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 1160px) {
|
|
|
|
.integrations-directory {
|
|
|
|
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
|
|
|
|
}
|
|
|
|
.id-item:nth-child(6) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 1020px) {
|
|
|
|
.integrations-directory {
|
|
|
|
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
|
|
|
|
}
|
|
|
|
.id-item:nth-child(5) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
.integrations-directory {
|
|
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
|
|
}
|
|
|
|
.id-item:nth-child(5),
|
|
|
|
.id-item:nth-child(6),
|
|
|
|
.id-item:nth-child(7) {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
.integrations-directory {
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
}
|
|
|
|
.id-item:nth-child(6),
|
|
|
|
.id-item:nth-child(7) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Built-in integrations */
|
2019-06-18 13:47:21 +03:00
|
|
|
.apps-first-header,
|
|
|
|
.apps-first-header .apps-grid-title {
|
|
|
|
margin-top: 0px;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.apps-grid {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.apps-grid-note {
|
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
color: var(--midgrey);
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Apps Card
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.apps-grid-cell {
|
|
|
|
flex: 1 1 100%;
|
2019-06-18 13:47:21 +03:00
|
|
|
background: var(--white);
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.apps-grid-cell {
|
|
|
|
transition: background 0.3s ease;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
2019-01-28 15:53:48 +03:00
|
|
|
|
2016-03-29 11:40:44 +03:00
|
|
|
.apps-grid-cell:hover {
|
2019-06-18 13:47:21 +03:00
|
|
|
background: var(--whitegrey-l2);
|
|
|
|
transition: none;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.apps-card-app {
|
2017-02-16 20:12:13 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2016-03-29 11:40:44 +03:00
|
|
|
overflow: hidden;
|
2021-02-08 21:20:26 +03:00
|
|
|
padding: 16px 4px;
|
2019-06-18 13:47:21 +03:00
|
|
|
height: 65px;
|
2021-02-08 21:20:26 +03:00
|
|
|
border-bottom: var(--whitegrey) 1px solid;
|
2016-03-29 11:40:44 +03:00
|
|
|
transition: background 0.3s ease;
|
|
|
|
}
|
|
|
|
|
2019-01-28 15:53:48 +03:00
|
|
|
.new-integration-cell .apps-card-app {
|
2019-06-18 13:47:21 +03:00
|
|
|
padding: 10px 16px;
|
2019-01-28 15:53:48 +03:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2017-11-09 15:28:54 +03:00
|
|
|
@media (max-width: 500px) {
|
|
|
|
.apps-card-app {
|
|
|
|
min-height: 75px;
|
|
|
|
height: auto;
|
|
|
|
}
|
2019-01-28 15:53:48 +03:00
|
|
|
|
|
|
|
.new-integration-cell .apps-card-app {
|
|
|
|
min-height: auto;
|
|
|
|
height: auto;
|
|
|
|
}
|
2017-11-09 15:28:54 +03:00
|
|
|
}
|
|
|
|
|
2019-01-14 18:37:14 +03:00
|
|
|
.apps-grid-cell:first-of-type .apps-card-app {
|
2016-03-29 11:40:44 +03:00
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
2021-02-08 21:20:26 +03:00
|
|
|
.apps-card-left {
|
2016-03-29 11:40:44 +03:00
|
|
|
display: flex;
|
2017-02-16 20:12:13 +03:00
|
|
|
align-items: center;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
|
|
|
|
2017-11-09 15:28:54 +03:00
|
|
|
@media (max-width: 500px) {
|
|
|
|
.apps-card-left {
|
|
|
|
flex-basis: 70%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-16 20:12:13 +03:00
|
|
|
.apps-card-right {
|
2016-03-29 11:40:44 +03:00
|
|
|
display: flex;
|
2017-02-16 20:12:13 +03:00
|
|
|
align-items: center;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
|
|
|
|
2021-01-07 19:11:49 +03:00
|
|
|
.apps-card-right svg {
|
|
|
|
margin-left: 15px;
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.apps-card-right svg path {
|
|
|
|
fill: var(--midgrey);
|
|
|
|
}
|
|
|
|
|
2017-02-16 20:12:13 +03:00
|
|
|
.apps-configured {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-02-21 12:16:32 +03:00
|
|
|
color: var(--midgrey);
|
|
|
|
font-weight: 300;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
|
|
|
|
2017-04-07 18:23:45 +03:00
|
|
|
.apps-configured svg {
|
2017-02-16 20:12:13 +03:00
|
|
|
margin-left: 15px;
|
2017-04-07 18:23:45 +03:00
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.apps-configured svg path {
|
|
|
|
fill: var(--midgrey);
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
|
|
|
|
2017-02-27 09:31:01 +03:00
|
|
|
.apps-configured a {
|
2019-06-18 13:47:21 +03:00
|
|
|
display: inline-block;
|
2021-02-12 12:19:25 +03:00
|
|
|
padding: 2px 6px;
|
|
|
|
border-radius: 3px;
|
2017-02-27 09:31:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.apps-configured-action {
|
|
|
|
margin-left: 15px;
|
|
|
|
text-transform: uppercase;
|
2019-06-18 13:47:21 +03:00
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: 500;
|
2017-02-27 09:31:01 +03:00
|
|
|
}
|
|
|
|
|
2016-03-29 11:40:44 +03:00
|
|
|
.apps-card-app-icon {
|
|
|
|
flex: 0 0 47px;
|
2019-06-18 13:47:21 +03:00
|
|
|
margin: 0 12px 0 0;
|
2016-03-29 11:40:44 +03:00
|
|
|
width: 47px;
|
|
|
|
height: 47px;
|
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
2018-11-13 14:42:44 +03:00
|
|
|
background-repeat: no-repeat;
|
2016-03-29 11:40:44 +03:00
|
|
|
border-radius: 15%;
|
2019-03-25 11:48:22 +03:00
|
|
|
mix-blend-mode: multiply;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.apps-card-meta {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-01-07 19:11:49 +03:00
|
|
|
padding-right: 40px;
|
2017-08-17 14:03:20 +03:00
|
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
.apps-card-meta {
|
2017-11-09 15:28:54 +03:00
|
|
|
flex-basis: 70%;
|
2018-01-02 14:35:24 +03:00
|
|
|
padding-right: 10px;
|
2017-08-17 14:03:20 +03:00
|
|
|
}
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.apps-card-app-title {
|
2017-02-16 20:12:13 +03:00
|
|
|
margin: 0;
|
2016-03-29 11:40:44 +03:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2019-06-18 13:47:21 +03:00
|
|
|
font-size: 1.5rem;
|
2021-03-01 16:45:57 +03:00
|
|
|
line-height: 1.3em;
|
2019-06-18 13:47:21 +03:00
|
|
|
font-weight: 600;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
2017-08-17 14:03:20 +03:00
|
|
|
@media (max-width: 500px) {
|
|
|
|
.apps-card-app-title {
|
2017-11-09 15:28:54 +03:00
|
|
|
white-space: normal;
|
2017-08-17 14:03:20 +03:00
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
}
|
2016-03-29 11:40:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* Apps Card Meta
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.apps-card-app-desc {
|
|
|
|
display: -webkit-box;
|
|
|
|
overflow: hidden;
|
2019-06-18 13:47:21 +03:00
|
|
|
margin: 4px 0 0;
|
2016-03-29 11:40:44 +03:00
|
|
|
padding: 0;
|
|
|
|
max-height: 4.2rem;
|
|
|
|
color: var(--midgrey);
|
|
|
|
text-overflow: ellipsis;
|
2019-06-18 13:47:21 +03:00
|
|
|
font-size: 1.3rem;
|
2016-03-29 11:40:44 +03:00
|
|
|
line-height: 1.3em;
|
2019-06-18 13:47:21 +03:00
|
|
|
font-weight: 400;
|
2016-03-29 11:40:44 +03:00
|
|
|
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
}
|
|
|
|
@media (min-width: 600px) and (max-width: 1460px) {
|
|
|
|
.apps-card-app-desc {
|
2021-01-07 19:11:49 +03:00
|
|
|
padding-right: 24px;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Apps Card Footer
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.apps-card-footer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 15px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-01-28 15:53:48 +03:00
|
|
|
|
2021-02-08 21:20:26 +03:00
|
|
|
/* Details
|
2016-03-29 11:40:44 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.app-grid {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
2021-02-08 21:20:26 +03:00
|
|
|
align-items: flex-start;
|
2016-03-29 11:40:44 +03:00
|
|
|
align-content: flex-start;
|
2021-02-12 16:58:56 +03:00
|
|
|
margin-top: 24px;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
2019-06-18 13:47:21 +03:00
|
|
|
|
2016-03-29 11:40:44 +03:00
|
|
|
.app-icon {
|
|
|
|
position: relative;
|
2021-02-08 21:20:26 +03:00
|
|
|
flex: 1 0 56px;
|
|
|
|
width: 56px;
|
|
|
|
min-width: 56px;
|
|
|
|
height: 56px;
|
2016-03-29 11:40:44 +03:00
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
|
|
|
border-radius: 10%;
|
2021-02-08 21:20:26 +03:00
|
|
|
margin-right: 32px;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
|
|
|
|
2019-01-23 11:05:28 +03:00
|
|
|
.app-icon img {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2016-03-29 11:40:44 +03:00
|
|
|
.app-cell h3 {
|
2021-02-08 21:20:26 +03:00
|
|
|
margin: 4px 0 0;
|
|
|
|
color: var(--black);
|
|
|
|
font-size: 2.1rem;
|
|
|
|
font-weight: 600;
|
2016-03-29 11:40:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.app-cell p {
|
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 5px;
|
2017-02-17 18:58:08 +03:00
|
|
|
color: var(--midgrey);
|
2021-02-08 21:20:26 +03:00
|
|
|
font-size: 1.4rem;
|
2016-03-29 11:40:44 +03:00
|
|
|
line-height: 1.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-subtitle {
|
|
|
|
max-width: 550px;
|
2017-02-17 18:58:08 +03:00
|
|
|
color: var(--midgrey);
|
2016-03-29 11:40:44 +03:00
|
|
|
font-size: 1.6rem;
|
|
|
|
}
|
2017-02-16 22:50:05 +03:00
|
|
|
.app-config-form .gh-btn-grey {
|
2016-03-29 11:40:44 +03:00
|
|
|
margin-top: 1.6em;
|
|
|
|
background-color: #e8e8e8;
|
|
|
|
box-shadow: none;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
.app-config-form > .gh-btn-grey:hover,
|
|
|
|
.app-config-form > .gh-btn-grey:focus {
|
2016-03-29 11:40:44 +03:00
|
|
|
border-color: rgb(223, 225, 227);
|
|
|
|
}
|
2019-01-28 15:53:48 +03:00
|
|
|
|
2021-02-08 21:20:26 +03:00
|
|
|
.app-api-buttons {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
top: -4px;
|
|
|
|
right: -3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-button-regenerate {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
border: 1px solid var(--lightgrey);
|
|
|
|
border-radius: 3px;
|
2021-02-08 23:16:41 +03:00
|
|
|
padding: 5px 8px;
|
2021-02-08 21:20:26 +03:00
|
|
|
margin-right: 8px;
|
|
|
|
background: var(--white);
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-button-copy {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
background: var(--black);
|
|
|
|
font-size: 1.2rem;
|
|
|
|
padding: 4px 12px;
|
|
|
|
color: var(--white);
|
|
|
|
font-weight: 500;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
2020-11-25 13:31:15 +03:00
|
|
|
/* Zapier templates */
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
.gh-settings-zapier-templates .apps-grid-cell:hover {
|
|
|
|
background: var(--white);
|
|
|
|
}
|
|
|
|
|
|
|
|
.zapier-template-link:hover {
|
|
|
|
border-color: #f04600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zapier-template-link span {
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
transition-property: color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zapier-template-link:hover span {
|
|
|
|
color: #f04600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-settings-zapier-templates .apps-card-app-title {
|
|
|
|
margin-left: 8px;
|
|
|
|
white-space: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-settings-zapier-templates .apps-card-app {
|
|
|
|
height: 68px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-settings-zapier-templates .gh-card-right {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zapier-footer,
|
|
|
|
.zapier-footer a {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
color: var(--midgrey);
|
|
|
|
font-size: 1.3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zapier-footer figure {
|
|
|
|
margin: 0 0 2px;
|
|
|
|
width: 47px;
|
|
|
|
height: 47px;
|
|
|
|
background-position: 50%;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
border-radius: 15%;
|
2021-02-08 23:16:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Custom Integrations
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
.new-webhook-cell td {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.new-webhook-cell:hover {
|
|
|
|
background: var(--whitegrey-l2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-custom-icon-container {
|
|
|
|
margin-right: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-custom-icon {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
align-items: center;
|
2021-02-10 20:48:27 +03:00
|
|
|
height: 117px;
|
|
|
|
width: 117px;
|
2021-02-08 23:16:41 +03:00
|
|
|
margin: 0;
|
|
|
|
border-radius: 3px;
|
2021-02-12 19:28:08 +03:00
|
|
|
border: 1px solid var(--whitegrey-d1);
|
2021-02-08 23:16:41 +03:00
|
|
|
background: var(--white);
|
|
|
|
padding: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-custom-icon-uploadlabel {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
color: var(--white);
|
|
|
|
border-radius: 3px;
|
|
|
|
text-align: center;
|
|
|
|
background-color: var(--black);
|
|
|
|
font-size: 1.3rem;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2021-02-12 16:58:56 +03:00
|
|
|
.app-custom-api-table {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2021-02-08 23:16:41 +03:00
|
|
|
.app-custom-api-table .data-label {
|
2021-02-12 16:58:56 +03:00
|
|
|
width: 160px;
|
2019-01-28 15:53:48 +03:00
|
|
|
}
|