| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540 |
- @import "../whmcs/whmcs.less";
- @bg-color: @gray-lighter;
- @light-text-color: lighten(@gray, 20%);
- @input-border: @default-border-color;
- @input-bg: @white;
- @input-color: @baseFontcolor;
- @input-focus-border: @themeColor;
- @input-focus-bg: @white;
- @input-focus-color: @gray-lighter;
- /**
- * -------------------------
- * Botstrap overdrive
- * -------------------------
- */
- h3, h4, h5, h6 {
- margin-top: 15px;
- margin-bottom: 15px;
- }
- #order-standard_cart, #registration {
- form {
- .TM-card {
- padding-bottom: 0;
- }
- }
- }
- .cpanel-usage-stats {
- input[readonly] {
- background-color: transparent!important;
- }
- }
- //inputs//
- .user-avatar {
- img, [class*="fa-"] {
- width: 72px;
- height: 72px;
- border-radius: 56px;
- border: 2px solid @default-border-color;
- }
- [class*="fa-"] {
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 1.30rem;
- }
- &.avatar-small {
- img, [class*="fa-"] {
- width: 36px;
- height: 36px;
- }
- }
- &.avatar-navbar {
- img, [class*="fa-"] {
- width: 36px;
- height: 36px;
- }
- [class*="fa-"] {
- font-size: 100%;
- }
-
- @media (min-width: 634px) {
- img, [class*="fa-"] {
- width: 40px;
- height: 40px;
- }
- [class*="fa-"] {
- font-size: 120%;
- }
- }
- }
-
- &.avatar-mid {
- img, [class*="fa-"] {
- width: 46px;
- height: 46px;
- }
- }
- }
- /**
- * -------------------------
- * WHMCS style overdrive
- * -------------------------
- */
-
- .carousel-item.item {
- float: none;
- }
- .carousel-inner .carousel-item.item {
- float: left;
- }
- section#main-body {
- flex: 1 0 auto;
- padding: 60px 0 60px;
- min-height: 70vh;
- margin: 0;
- }
- .main-container-nosidebar {
- width: 100%;
- max-width: 928px;
- margin: 0 auto;
- }
- .@{brand}-navbar {
- &.navbar {
- .navbar-nav {
- .home-item {
- @media (min-width: 992px) {
- span {
- display: none;
- }
- }
- @media (max-width: 991px) {
- a {
- span {
- display: block;
- }
- }
- .fa, .fas, .fal, .far{
- display: none;
- }
- }
-
- }
- }
- }
- }
- .desc {
- margin-bottom: 30px;
- }
- .header-banner-styled {
- .page-title {
- text-align: left;
- padding: 32px 0;
- @media (min-width: 768px) {
- padding: 52px 0;
- }
- }
- .header-lined {
- margin-bottom: 0;
- h1, h2 {
- font-size: 26px;
- line-height: 1.2;
- @media (min-width: 768px){
- font-size: 36px;
- }
- }
- }
-
- &.bg-primary, &.inverse, &.dark {
- h1, h2 {
- color: @white;
- }
- .breadcrumb {
- li {
- a {
- color: @white;
- }
-
- &.active {
- color: rgba(255,255,255, 0.7);
- }
- }
- }
- span {
- color: @white;
- }
- }
- }
- .header-lined {
- margin-bottom: 40px;
- div {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- justify-content: space-between;
- }
-
- h1 {
- font-size: 34px;
- line-height: 40px;
- padding: 0; margin: 0;
- }
-
- p { margin: 10px 0 0; }
-
- .breadcrumb {
- background: transparent!important;
- padding: 6px 0 0;
- margin: 0;
- font-size: @baseFontSize - 1;
- border-radius: 0;
-
- li {
- a {
- color: #888;
- }
-
- &.active {
- color: @gray;
- }
-
- }
- }
- span, p {
- font-size: @baseFontSize - 1;
- color: @gray-light;
- }
- .search-group {
- position: relative;
- input {
- padding-left: 36px;
- }
- &:before {
- content: "\f002";
- font-family: "Font Awesome 5 Pro";
- font-weight: 400;
- position: absolute;
- height: 100%;
- width: 36px;
- color: @light-text-color;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: @baseFontSize + 2;
- z-index: 10;
- }
- }
- @media (max-width: 767px) {
- .search-group {
- margin-top: 15px;
- width: 100%;
- }
- }
- }
- section#home-banner {
- display: flex !important;
- flex-direction: column !important;
- justify-content: center !important;
- align-items: center !important;
- background-color: darken(@brand-primary, 30%);
- min-height: 400px;
- padding: 96px 0;
-
- h2 {
- font-weight: 300;
- @media (min-width: 768px) {
- font-size: 37px;
- margin-bottom: 15px;
- }
- }
-
- .serach-form {
- display: flex;
- align-items: center;
- position: relative;
- background: @white;
- width: 100%;
- max-width: 606px;
- padding: 6px;
- margin: 0 auto;
- border-radius: 4px;
-
- .input-group-icon {
- margin: 0 0 0 8px;
- font-size: 18px;
- color: @gray-light;
- }
- .input-group-btn {
- display: flex;
- width: auto;
-
- .btn {
- font-weight: normal;
-
- &.search {
- background-color: @brand-primary;
- }
-
- &.transfer {
- background-color: @gray;
- }
- }
- }
-
-
- @media (max-width: 586px) {
- display: block;
- background: 0 0;
-
- .input-group-icon {
- display: none;
- }
- .form-control {
- margin-bottom: 7.5px;
- }
-
- .input-group-btn {
- width: 100%;
-
- .btn {
- flex: 1;
- }
- }
- }
- }
- }
- /**
- * -------------------------
- * some form input butto fix
- * -------------------------
- */
- .form-actions {
- display: block;
- padding: 15px 10px;
- border-top: 1px solid @default-border-color;
- margin: 45px 0 15px;
- }
- .checkbox label, .radio label {
- cursor: pointer;
- }
- /**
- * -------------------------
- * custom styles
- * -------------------------
- */
-
- .section {
- .panel {
- border-color: @default-border-color;
- box-shadow: none;
- border-radius: 4px;
- .cpanel-feature-row {
- a {
- display: flex;
- align-items: center;
- padding: 0.5rem 0;
- text-decoration: none;
- [class*="fa-"] {
- margin-right: 4px;
- }
- }
- }
- &.panel-tabs {
- .panel-nav {
- background-color: @white;
- border-bottom: 1px solid @default-border-color;
- }
- .tab-content {
- .tab-pane {
- font-size: @baseFontSize + 2;
-
- .text-heading {
- font-size: @baseFontSize;
- color: @light-text-color;
- }
- .cpanel-domain-overview {
- padding: 30px;
-
- .btn {
- margin-bottom: 10px;
- }
- @media (min-width: 768px) {
- text-align: center;
-
- .btn {
- margin-bottom: 0;
- }
- }
- }
-
- #cPanelBillingOverviewPanel {
- [class*=col-]>.row {
- margin-bottom: 15px;
- }
- .billingInfo {
- [class*=col-]>.row {
- margin-bottom: 15px;
- }
- }
- }
- }
- }
- }
-
- &.panel-affiliate-referral-link {
- border: 1px solid @default-border-color;
- box-shadow: none;
-
- .panel-body {
- .input-group {
- display: flex;
-
- @media (max-width:767px) {
- flex-direction: column;
-
- .input-group-addon {
- border-bottom: 0 none!important;
- &:first-child {
- border-right: 1px solid @default-border-color;
- }
- }
- .input-group-addon, .form-control, .input-group-text {
- border-radius: 0!important;
- width: 100%;
- }
- .input-group-text {
- width: 100%;
- margin-bottom: 0.50rem;
- }
- }
- .input-group-addon {
- display: flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- width: auto;
- }
- .form-control {
- background-color: @white;
- }
- }
- }
- }
-
- .panel-footer {
- background-color: @white;
- }
- }
- +.section {
- margin-top: 60px;
- }
-
- >:last-child {
- margin-bottom: 0;
- }
- }
- .section, .TM-card {
- .panel {
- &.panel-switch {
- position: relative;
- background-color: @white;
- border: 1px solid @default-border-color;
- outline:0 none !important;
- box-shadow: none;
- border-radius: 4px;
- max-width: 290px;
- cursor: pointer;
-
- .panel-body {
- display: flex;
- align-items: center;
- padding: 20px 15px;
-
- .switch {
- margin: 0 0 0 auto;
- }
- .switch-label {
- padding-right: 10px;
- }
- }
-
- &.checked {
- border-color: @brand-primary;
- }
-
- .loader-panel {
- visibility:hidden;
- opacity: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- background: @white;
- border-radius: 4px;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
-
- &.loading {
- visibility:visible;
- opacity: 1;
- }
- }
-
- }
- }
- }
- /**
- * -------------------------
- * spanner
- * -------------------------
- */
-
- .spanner {
- position: absolute;
- width: 64px;
- height: 12px;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- margin: auto;
-
- div, span {
- position: absolute;
- top: 0;
- width: 11px;
- height: 11px;
- border-radius: 50%;
- background: @brand-primary;
- animation-timing-function: cubic-bezier(0, 1, 1, 0);
-
- &:nth-child(1) {
- left: 6px;
- animation: spanner1 0.6s infinite;
- }
-
- &:nth-child(2) {
- left: 6px;
- animation: spanner2 0.6s infinite;
- }
-
- &:nth-child(3) {
- left: 26px;
- animation: spanner2 0.6s infinite;
- }
-
- &:nth-child(4) {
- left: 45px;
- animation: spanner3 0.6s infinite;
- }
- }
-
- @keyframes spanner1 {
- 0% {
- transform: scale(0);
- }
- 100% {
- transform: scale(1);
- }
- }
- @keyframes spanner3 {
- 0% {
- transform: scale(1);
- }
- 100% {
- transform: scale(0);
- }
- }
- @keyframes spanner2 {
- 0% {
- transform: translate(0, 0);
- }
- 100% {
- transform: translate(19px, 0);
- }
- }
- }
- /**
- * -------------------------
- * alert large
- * -------------------------
- */
-
- .alert-lg {
- display: flex;
- flex-direction: column;
- align-items: center;
- border: 1px solid @default-border-color;
- border-radius: 4px;
- margin-bottom: 20px;
-
- &.no-data {
- padding: 32px;
- min-height: 320px;
- justify-content: center;
- }
-
- &.no-border {
- border: 0 none;
- box-shadow: none!important;
- }
- .icon {
- display: flex;
- justify-content: center;
- align-items: center;
- .fas, .fal, .far, .fad {
- font-size: @baseFontSize + 35;
- color: @brand-primary;
- }
- }
- .text {
- text-align: center;
- margin-top: 16px;
- margin-bottom: 20px;
- font-weight: normal;
- }
-
- &:last-child {
- margin-bottom: 0;
- }
- }
- /**
- * -------------------------
- * custom card
- * -------------------------
- */
- .TM-card {
- padding: 15px;
- border: 1px solid @default-border-color;
- margin-bottom: 20px;
- border-radius: 4px;
-
- .progress {
- height: 4px;
- }
-
- &.pricing-tables {
- background-color: @white;
- display: flex;
- flex-direction: column;
- padding: 30px;
- p {
- font-size: @baseFontSize + 2;
- margin-bottom: 20px;
- color: @light-text-color;
- }
- .icon {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 20px;
- }
- .product-name {
- margin: 0;
- }
-
- .product-content {
- flex: 1 0 auto;
- .product-features {
- position: relative;
- margin-top: 15px;
-
- li {
- padding: 7.5px 0;
- color: @light-text-color;
- }
- }
- }
- .product-footer {
- padding-top: 20px;
- }
-
- &.small-padding {
- padding: 15px;
- }
- }
-
- &.search-card {
- padding: 2rem;
-
- .input-group {
- max-width: 686px;
- margin: auto;
- &:before {
- content: "\f002";
- font-family: 'Font Awesome 5 Pro';
- position: absolute;
- height: 100%;
- width: 44px;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 16px;
- color: @gray-light;
- z-index: 10;
- }
-
- .form-control {
- padding-left: 44px;
- }
- }
-
- @media (max-width: 633px) {
- .form-control {
- width: 100%;
- }
- .input-group {
- &.kb-search {
- display: block;
- }
- &:before {
- height: auto;
- width: auto;
- display: block;
- top: 12px;
- left: 14px;
- }
- }
-
- .input-group-btn, .input-group-append {
- .btn {
- margin-top: 7.5px;
- width: 100%;
- border-radius: 0;
- }
- }
- }
- }
-
- &.social {
- display: flex;
- justify-content: space-between;
- flex-direction: row;
- background-color: @white;
- border-width: 1px 0 0;
-
- @media (min-width: 587px) {
- align-items: center;
- }
-
- @media (max-width: 586px) {
- flex-direction: column;
- }
- }
-
- &.annoucements {
- background-color: @white;
- padding: 0;
- border: 0 none;
-
- .annuncement-item {
- cursor: pointer;
- display: block;
- padding: 15px;
- border: 1px solid transparent;
-
- .annuncement-footer {
- display: flex;
- align-items: center;
- justify-content: space-between;
- visibility: hidden;
-
- .btn-link {
- background-color: @white!important;
- }
- .announcement-details {
- display: flex;
- margin-left: auto;
-
- @media (max-width: 450px) {
- .fb-like {
- display: none;
- }
- }
-
- .announcement-date {
- color: @gray-light;
- font-size: 85%;
- margin-left: 10px;
- }
- }
- }
-
- &:hover, &:focus {
- background-color: @bg-color;
-
- .annuncement-footer {
- visibility: visible;
- }
- }
-
- &:not(:last-of-type) {
- border-bottom: 1px solid @default-border-color;
-
- }
-
- &.last {
- background-color: @bg-color;
-
- h1, h2, h3 {
- font-weight: bold;
- }
- }
-
- &.latest {
- padding: 30px 15px;
- border-bottom: 1px solid transparent;
- border: 1px dotted transparent;
- border-radius: 4px;
-
- @media (min-width: 768px) {
- min-height: 350px;
- margin-bottom: 30px;
- }
-
- &:hover, &:focus {
- border: 1px dotted @brand-primary;
- }
-
- }
- }
-
- &.homepage {
- border: 1px solid @default-border-color;
- border-radius: 4px;
-
- .annuncement-item {
- .annuncement-footer {
- visibility: visible!important;
- }
- }
- }
-
- .row {
- margin: 0;
- }
-
- .pagination {
- display: flex;
- padding: 1rem 1rem 0.50rem;
- margin: 0;
- border-top: 1px solid @default-border-color;
-
- .page-link {
- [class*="fa-"] {
- font-weight: 300;
- }
- }
-
- .disabled {
- span {
- color: @gray-light;
- }
- }
- }
- }
-
- .user-list {
- display: flex;
- align-items: center;
- .user-list-item {
- display: flex;
- align-items: center;
- .user-list-item-avatar {
- margin-right: 0.5rem;
- width: 48px;
- padding: 0;
- margin: 0 8px;
- border-radius: 100%;
- overflow: hidden;
- display: flex;
- align-items: center;
- border: 2px solid @default-border-color;
- img {
- max-width: 100%;
- }
- }
- .user-list-item-profile {
- margin-left: 0.5rem;
- span {
- display: block;
- }
- .user-list-item-profile-lastlogin {
- font-size: 80%;
- }
- }
- }
-
- &.user-switch {
- .user-list-item {
- width: 100%;
- .user-avatar {
- margin-right: 0.5rem;
- }
- .user-info {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
-
- .user-profile {
- .user-list-name, .user-list-email {
- display: block;
- }
- }
- }
- }
- }
-
- }
- }
- .select-account a {
- &:hover, &:focus {
- border-color: @themeColor!important;
- }
- }
- /**
- * -------------------------
- * Promotional Content Formatting
- * -------------------------
- */
- .promo-banner {
- @media (max-width: 767px) {
- .content {
- text-align: center;
-
- small {
- display: block;
- }
- }
- }
- }
- .store-promoted-product {
- border: 1px solid @default-border-color;
- border-radius: 4px;
- }
- .store-order-container {
- width: 100%;
- max-width: 928px;
- margin: 0 auto;
- padding: 80px 0 0;
-
- .payment-term {
- float: none!important;
- }
- .nav-tabs, .nav-pills {
- margin-bottom: 0;
- }
- }
- .store-order-container {
- h2 {
- margin-top: 0;
- }
- .store-domain-tabs {
- margin-top: 20px;
- li {
- a {
- background-color: @gray-lighter;
- border: 1px solid @default-border-color;
- color: @baseFontcolor;
- }
-
- &.active {
- a, a:hover, a:focus {
- background-color: @white;
- border-color: @default-border-color;
- border-bottom: 1px solid transparent;
- }
- }
- }
- }
- .store-domain-tab-content {
- margin-bottom: 20px;
- padding: 20px;
- border: 1px solid @default-border-color;;
- border-top: 0;
- a {
- text-decoration: underline;
- &:hover, &:focus {
- text-decoration: none;
- }
- }
- }
- .payment-term {
- h4 {
- margin-top: 25px;
- }
- }
- .domain-validation {
- display: block;
- padding-top: 5px;
- font-size: 1.2em;
- font-weight: 300;
- color: #888;
-
- &.ok {
- color: @brand-success;
- }
- }
- }
-
- @media (min-width: 768px) {
- .store-order-container {
- .payment-term {
- float: right;
- h4 {
- margin-top: 0;
- }
- }
- }
- }
- .store-promoted-product {
- margin: 50px 0;
- padding: 30px 30px 50px 30px;
-
- .icon {
- height: 200px;
- line-height: 200px;
- text-align: center;
- overflow: hidden;
- img {
- max-width: 100%;
- max-height: 100%;
- }
- }
- ul {
- &.features {
- margin: 20px 0;
- padding: 0;
- list-style: none;
- font-size: 1.1em;
- font-weight: 300;
- li {
- float: left;
- width: 50%;
- margin-bottom: 5px;
- .fa:not(.fa-spinner) {
- font-size: 1.2em;
- color: #91c590;
- margin-left: 20px;
- margin-right: 10px;
- }
- }
- }
- }
- .btn {
- margin-top: 10px;
- }
- }
- /**
- * -------------------------
- * Custom Sidebar Panels
- * -------------------------
- */
- .sidebar {
- &.default {
- .panel-sidebar {
- padding: 15px;
- border: 1px solid @default-border-color;
-
- .panel-heading {
- padding: 0 0 10px;
-
- .panel-title {
- i {
- width: auto;
- overflow: initial;
- margin: 0;
- line-height: 1;
- }
- .panel-minimise {
- display: none;
- }
- }
- }
- .list-group {
- a {
- padding: 5px 15px 5px 0;
- }
- }
-
- &.panel-ticket-info {
- padding: 0;
- border: 0 none;
- box-shadow: none;
-
- .panel-heading {
- padding: 0 15px 10px;
- }
- }
-
- &.panel-client-details .panel-footer .btn,
- &.panel-client-contacts .panel-footer .btn {
- width: 100%;
- display: block;
- }
- }
-
- &.no-icon {
- .panel-sidebar {
- .list-group {
- a {
- [class*="fa-"], [class^="fa-"] {
- display: none;
- }
- }
- }
- }
- }
-
-
- }
-
- .card-sidebar {
- .card-title {
- font-size: 1.125rem;
- .btn-sm ,.btn-group-sm > .btn {
- padding: 1px 5px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
- }
-
- [class*="fa-"], [class^="fa-"] {
- opacity: 0.70;
- }
- }
-
- .card-collapsable {
- .card-header {
- cursor: pointer;
- }
- .card-body-collapsed {
- display: none;
- }
- }
- .title {
- font-weight: 500;
- }
-
- .list-group {
- font-size: 0.9em;
- .list-group-item {
- padding: 7px 15px;
- .badge {
- padding: 5px 2px;
- width: 28px;
- text-align: center;
- }
-
- &.active, &.active:hover, &.active:focus, &:hover, &:focus {
- background-color: @gray-lighter;
- color: @baseFontcolor;
- border-color: @default-border-color;
- .badge {
- background-color: @white!important;
- color: @baseFontcolor!important;
- }
- }
-
- i.far.fa-circle {
- opacity: 70;
- }
- }
- }
- .card-minimise {
- cursor: pointer;
- transition: transform 200ms ease;
- &.minimised {
- transform: rotate(180deg);
- }
- }
-
- &.panel-support-hours {
- .list-group {
- padding: 0.50rem;
- border-bottom: 1px solid @default-border-color;
- .list-group-item {
- border: 0 none;
- background-color: transparent;
- span {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- font-weight: 500;
- font-size: 1.125rem;
- }
- small {
- opacity: 0.70;
- }
- }
- }
- .card-footer {
- background-color: transparent;
- border-top: 0 none;
- }
- }
- &.panel-client-details {
- @media (max-width: 991px) {
- display: none;
- }
- .user-profile {
- .user-avatar {
- display: flex;
- flex-direction: column;
- padding: 0 1rem;
- img {
- border: 2px solid @default-border-color;
- margin-bottom: 0.5rem;
- }
-
- }
- }
- }
- &.panel-ticket-info {
- .card-footer {
- .btn {
- [class*="fa-"] {
- display: none;
- }
- }
- }
- }
- }
- }
- body.c-depth {
- .sidebar {
- &.default {
- .panel-sidebar {
- &.panel-default {
- box-shadow: @box-shadow!important;
- }
- }
- }
- }
- }
- .panel-sidebar {
- border: 0 none;
- font-size: @baseFontSize;
- box-shadow: none;
- background-color: transparent;
-
- .panel-heading {
- padding: 0 0 10px 0;
- border-bottom: 1px dotted @default-border-color;
-
- .panel-title {
- font-weight: 500;
-
- i {
- width: 0;
- overflow: hidden;
- margin-left: -9px;
- display: inline-block;
- line-height: 0;
- }
- }
- }
- .panel-heading, .panel-footer {
- background-color: transparent;
- }
- .panel-footer {
- border: 0 none;
- padding: 10px 0;
- }
-
- &.panel-default {
- box-shadow: none!important;
- background-color: transparent;
-
- .panel-heading {
- background-color: transparent;
- }
- }
-
- &.panel-client-details, &.panel-client-contacts {
- .panel-footer {
- .btn {
- display: inline-flex;
- width: auto;
-
- i {
- display: none;
- }
- }
- }
- }
-
- .panel-body {
- padding: 15px 0;
-
- strong {
- display: block;
- margin-bottom: -15px;
- }
- }
- .list-group {
- overflow: hidden!important;
- padding: 0;
-
- .list-group-item {
- position: relative;
- display: block;
- padding: 5px 15px;
- text-align: left;
- border: 0 none!important;
- background-color: transparent;
- border-radius: 0;
- margin: 0;
-
- i:not(.fa-circle):not(.fa-dot-circle) {
- float: left;
- }
-
- &.list-group-item-action {
- width: auto;
- }
- }
- a.list-group-item {
- @media (max-width: 767px) and (min-width: 481px) {
- flex-basis: calc(50%);
- }
- @media (max-width: 480px) {
- flex-basis: calc(100%);
- }
- @media (max-width: 991px) {
- .list-group-item {
- margin-right: 16px;
- }
- }
-
- border: 0 none;
- @media (min-width: 992px) {
- .transition(~"all 0.1s");
-
- &:hover, &:focus {
- margin-left: 8px;
- }
- }
-
- &.active , &.active:hover, &.active&:focus {
- background-color: transparent;
- color: @link-color;
-
- .fa, .fas, .far, .fal {
- color: @link-color;
- }
- }
-
- &.disabled {
- background-color: transparent;
-
- &:hover, &:focus {
- margin-left: 0;
- }
- }
- }
-
- @media (max-width: 991px) {
- display: flex;
- flex-wrap: wrap;
- flex-direction: row;
- }
-
- form {
- display: inline-block;
- }
-
- }
-
- &.panel-support-hours {
- .list-group {
- padding: 0.50rem;
- border-bottom: 1px solid @default-border-color;
- .list-group-item {
- span {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- font-weight: 500;
- font-size: 1.125rem;
- }
- small {
- opacity: 0.70;
- }
- }
- }
- }
- &.panel-ticket-info {
- box-shadow: none!important;
- .panel-heading {
- border: 0 none;
- }
- .list-group {
- overflow: visible !important;
- border: 1px solid @default-border-color;
- border-width: 1px 1px 0;
- display: block!important;
- border-radius: 4px;
-
- .list-group-item {
- padding: 10px 15px!important;
- &:not(list-of-type) {
- border-bottom: 1px solid @default-border-color!important;
- }
-
- .truncate {
- margin-bottom: 5px;
- }
-
- &:hover, &:focus {
- margin-left: 0;
- }
- }
- }
-
- .panel-footer {
- .row {
- margin: 0;
- }
- .btn {
- [class*="fa-"] {
- display: none;
- }
- }
- }
- }
-
- &.panel-invoice-info, &.panel-info {
- background-color: @bg-color;
- border: 1px solid @default-border-color;
- padding: 0!important;
- .panel-heading {
- display: none;
- }
- .panel-body {
- padding: 15px;
-
- .select-inline {
- width: 100%;
- }
-
- .payment-form {
- table {
- border-spacing: 0!important;
- td {
- display: block;
- }
- }
- .btn, table {width: 100%;}
- form {
- &:last-child {
- .btn {
- margin-top: 5px;
- }
- }
- }
- }
-
- .total {
- display: flex;
- flex-direction: column;
- margin-bottom: 20px;
- [class*="fa-"] {
- font-size: 0.875rem;
- }
- .total-price {
- font-size: 27px;
- font-weight: 500;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- }
- label {
- font-weight: 500;
- }
- }
- .panel-footer {
- background-color: transparent;
- padding: 10px 15px;
- display: flex;
- .btn {
- display: block;
- width: 100%;
- padding: 7.5px 18px;
- }
- }
-
- &.panel-funds {
- .list-info {
- margin-top: 1.50rem;
- padding-top: 1rem;
- border-top: 1px solid @default-border-color;
-
- .list-heading {
- padding-right: 1rem;
- flex: 1;
- }
- }
- }
-
- &.panel-support-hours {
- .panel-heading {
- display: block;
- padding: @panel-heading-padding;
- }
- }
- }
- &.panel-client-details {
- @media (max-width: 991px) {
- display: none;
- }
- .user-profile {
- .user-avatar {
- display: flex;
- flex-direction: column;
- padding: 0 1rem;
- img {
- border: 2px solid @default-border-color;
- margin-bottom: 0.5rem;
- }
- }
-
- }
- }
-
- &.panel-client-contacts {
- .list-group-item {
- &:before {
- font-family: "Font Awesome 5 Pro";
- content: "\f007";
- margin-right: 4px;
- font-weight: 900;
- color: #ccc;
- }
- }
- }
-
- &.panel-primary {
- background-color: @bg-color;
- padding: 15px;
- border: 1px solid @default-border-color;
- .panel-heading {
- border: 0 none;
- padding: 0;
- }
- .list-group {
- padding: 7.5px 0;
- .list-group-item {
- padding: 7.5px 0;
- }
- }
-
- .panel-footer {
- .btn-block {
- display: block;
- width:100%;
- padding: 7.5px 18px;
- }
- }
- }
- }
- /**
- * -------------------------
- * Custom Client Homepage Tiles
- * -------------------------
- */
- .tiles {
- margin-bottom: 30px;
- .tile {
- position: relative;
- .stats, .no-link {
- position: relative;
- border: 1px solid @default-border-color;
- display: flex;
- align-items: center;
- flex-direction: row-reverse;
- justify-content: space-between;
- padding: 1rem;
- text-decoration: none;
- margin-bottom: 2rem;
- overflow: hidden;
- border-radius: 4px;
- .icon {
- position: absolute;
- top: -60px;
- right: -20px;
- color: @baseFontcolor;
- .transform(rotate(-20deg));
- font-size: 110px;
- opacity: 0.1;
-
- }
- .stat {
- font-size: 4rem;
- font-weight: 500;
- line-height: 1;
- margin-bottom: 1rem;
- }
- .title {
- width: 100%;
- text-transform: uppercase;
- font-weight: 500;
- color: @gray-light;
- }
-
- .decs {
- display: block;
- border-top: 1px solid @default-border-color;
- text-transform: none;
- font-weight: 400;
- font-size: 80%;
- }
-
- @media (min-width: 768px) {
- margin-bottom: 1rem;
- min-height: 170px;
- justify-content: center;
- flex-direction: column;
- .title {
- margin-top: 0.5rem;
- text-align: center;
- }
- .stat {
- margin-bottom: 0;
- }
- }
- }
- .action {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- border-radius: 0 0 0.25rem 0.25rem;
- border: 0 none;
- }
- }
- }
- .home-kb-search {
- .form-control {
- background-color: @gray-lighter;
- font-weight: normal;
- border-color: @default-border-color;
- }
- }
- .mc-panel-promo {
- border: 1px solid @default-border-color;
- border-radius: 4px;
- padding: 10px;
- font-size: 0.95em;
- a {
- color: @baseFontcolor;
- text-decoration: none!important;
-
- span {
- font-weight: normal!important;
- }
- }
- }
- /**
- * -------------------------
- * Client Homepage
- * -------------------------
- */
- .text-domain {
- font-size: 12px;
- color: @link-color;
- }
- .client-home-panels {
- .panel {
- box-shadow: none;
- &.panel-default {
- border-color: @default-border-color;
- .panel-heading {
- background-color: @white;
- border-color: @default-border-color;
- }
- .panel-footer {
- background-color: transparent;
- }
- }
-
- .panel-body {
- max-height: 323px;
- overflow: auto;
-
- .panel-mc-sso {
- .row>.col-sm-6 {
- flex: 0 0 100%;
- max-width: 100%;
- width: 100%;
-
- &:first-of-type {
- display: none;
- }
-
- .btn-service-sso {
- display: block;
- width: 100%;
- }
- small {
- margin-top: 0.5rem;
- }
- }
- }
- }
- .panel-heading {
- padding: 18px 15px;
-
- .panel-title {
- font-weight: 500;
-
- a, .fa, .fas, .fal, .far {
- color: @light-text-color;
- }
- }
- }
-
- .list-group {
- max-height: 323px;
- overflow: auto;
-
- .list-group-item {
- border-color: @default-border-color;
- margin-top: -1px;
-
- .label, .badge {
- font-weight: bold;
- font-size: 75%;
- }
-
- .text-last-updated {
- display: block;
- font-size: 80%;
- }
- }
-
- &:last-child {
- border-bottom: 0;
- }
- }
-
- .panel-footer {
- border: 0 none;
- }
-
- &.panel-domain-register {
- position: relative;
- overflow: hidden;
- background-color: @bg-color;
- .panel-heading {
- background: transparent;
- border: 0 none;
- display: flex;
- align-items: center;
- justify-content: center;
- padding-bottom: 0;
- }
- .panel-body {
- padding: 15px;
- max-height: none;
- overflow: hidden;
- .input-group {
- display: flex;
- flex-wrap: wrap;
- margin: 0 0 15px;
-
- input[type="text"] {
- height: 46px;
- padding: 10px 16px;
- line-height: 1.3333333;
- }
-
- .input-group-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: row-reverse;
- width: 100%;
- margin-top: 15px;
-
- .btn {
- flex: 1;
- border-radius: 0 !important;
- &:first-child {
- margin-left: 8px;
- }
- &:last-child {
- color: @white;
- background-color: @gray;
-
- &:hover, &:focus {
- background-color: darken(@gray, 3%);
- }
- }
- }
- }
- }
-
- p {
- font-size: 80%;
- color: @gray-light;
- text-align: center;
- margin-bottom: 0;
- }
- }
-
- .fa, .fal, .fas, .far {
- position: absolute;
- top: -65px;
- right: -35px;
- font-size: 17.5em;
- color: @gray-light;
- opacity: .1;
- }
- }
-
- &.panel-services {
- .list-group {
- .list-group-item:first-child {
- border-top-width: 1px;
- }
- }
- }
- }
- }
- .div-service-item {
- display: flex;
- flex-direction: column;
- cursor: pointer;
- @media (max-width: 767px) {
- padding-right: 100px;
- justify-content: flex-start;
- }
- @media (min-width: 768px) {
- flex-direction: row;
- align-items: center;
- }
- }
- .div-service-status {
- @media (max-width: 768px) {
- position: absolute;
- top: 1rem;
- right: 2rem;
- }
- }
- .div-service-status .label-placeholder {
- position: absolute;
- visibility: hidden;
- }
- .div-service-status .label:not(.label-placeholder) {
- width: 3rem;
- }
- .div-service-name {
- display: flex;
- flex-direction: column;
- margin-right: auto;
- }
- .div-service-name > span {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .div-service-buttons .disabled {
- cursor: default;
- }
- .div-service-buttons .btn {
- min-width: 106px;
- }
- .div-service-item .dropdown-menu {
- min-width: 200px;
- }
- .div-service-item .dropdown-menu li {
- display: flex;
- align-items: center;
- white-space: nowrap;
- }
- .dropdown-menu li.disabled,
- .dropdown-menu li.disabled:hover,
- .dropdown-menu li.disabled:focus {
- color: #777777;
- cursor: default;
- background-color: transparent;
- }
- @media (min-width: 768px) {
- .div-service-status .label {
- width: initial !important;
- }
- }
- div[menuitemname="Active Products/Services"] .list-group {
- overflow: initial !important;
- max-height: initial !important;
- border-bottom: 0px !important;
- }
- div[menuitemname="Active Products/Services"] .list-group .list-group-item:nth-child(n+5) {
- display: none;
- }
- div[menuitemname="Active Products/Services"] .card-footer, div[menuitemname="Active Products/Services"] .panel-footer {
- border-top: 1px;
- padding: 1rem;
- text-align: center;
- .btn-view-more {
- &:extend(.btn);
- &:extend(.btn-primary);
- font-size: 12px;
- padding: 4px 10px;
- text-decoration: none;
- }
- }
- div[menuitemname="Active Products/Services"] .btn-view-more.disabled {
- cursor: default;
- opacity: 0.65;
- }
- /**
- * -------------------------
- * @Support tickets
- * -------------------------
- */
-
- .ticket-departments {
- margin: 30px 0;
- a {
- display: block;
- padding: 1rem;
- text-decoration: none;
- border: 1px solid @default-border-color;
- border-radius: 4px;
- margin-bottom: 1.75rem;
-
- .name {
- font-size: 18px;
- font-weight: 400;
- margin: 0;
- }
- .desc {
- display: block;
- color: @baseFontcolor;
- margin-top: 0.50rem;
- margin-bottom: 0;
- }
-
- &:hover, &:focus {
- background-color: @bg-color;
- }
- }
-
- &.list {
- border: 1px solid @default-border-color;
- border-radius: 4px;
- a {
- border: 0 none;
- border-radius: 0;
- margin-bottom: 0;
- box-shadow: none!important;
- &:not(:last-of-type) {
- border-bottom: 1px solid @default-border-color;
- }
- }
- }
- }
-
- .view-ticket {
- .ticket-reply {
- &.staff {
- .posted-by {
- background-color: @gray-lighter;
- }
- .message, .attachments {
- background-color: lighten(@gray-lighter, 3%);
- }
- }
- }
- .posted-by {
- border-bottom: 1px solid @default-border-color;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .user {
- display: flex;
- align-items: center;
- margin-right: auto;
- .name {
- display: flex;
- flex-direction: column;
- .posted-by-name {
- font-size: 1rem;
- }
- }
- .user-avatar {
- img, [class*="fa-"] {
- border: 2px solid @default-border-color;
- }
- }
- }
- .posted-on {
- align-self: flex-end;
- text-align: right;
- }
- }
- .attachments {
- border-color: @default-border-color;
- .attachment-list {
- li span {
- border-color: @default-border-color;
- figure {
- background-color: @gray-lighter;
- }
- }
- }
- }
- }
- /**
- * -------------------------
- * @Mass Payment
- * -------------------------
- */
- .table-masspay {
- margin-top: 20px;
- tr {
- th {
- font-weight: 500;
- }
- td {
- h5 {
- font-size: @baseFontSize + 1;
- i {
- margin-right: 4px;
- }
- }
- a {
- text-decoration: none;
- }
- }
- }
- .item-description {
- td {
- border: 0 none!important;
- }
- }
- .masspay-total {
- td {
- font-size: @baseFontSize + 1;
- font-weight: 500;
- background-color: transparent;
- padding: 15px 0;
-
- &.text-right {
- padding-right: 4px;
- }
- }
- }
- }
- /**
- * -------------------------
- * @Tables
- * -------------------------
- */
- .table-container {
- background-color: @white;
- border: 1px solid @default-border-color;
- padding: 0;
- margin-bottom: 20px;
- border-radius: 4px;
-
- .listtable {
- .table {
- margin-bottom: 0;
- thead {
- th {
- font-weight: normal;
- font-size: 80%;
- border-bottom: 2px solid @default-border-color;
-
- &[class*=sorting_] {
- background-color: @white;
- border-bottom: 2px solid @brand-primary;
- }
- }
- }
- tbody {
- .col-small {
- width: 45px; min-width: 45px;
-
- &.center {
- text-align: center;
- }
- }
- tr {
- cursor: pointer;
-
- &.row-detail {
- ul {
- padding: 0;
-
- li {
- list-style-type: none;
- }
- }
- }
- td {
- outline: none!important;
- a {
- text-decoration: none;
- }
- .text-small {
- display: inline-block;
- font-size: 85%;
- }
- .ssl-info {
- display: inline-block;
- img {
- height: 12px;
- width: 12px;
- max-width: 12px;
- }
- }
- .btn-link {
- color: @brand-primary;
- background-color: transparent!important;
- text-decoration: none;
- }
-
- @media (min-width:1041px) {
- .cycle-text {
- display: block;
- }
- }
- }
- }
- }
- thead, tbody, tfoot {
- tr {
- th, td {
- position: relative;
- vertical-align: middle;
- }
- }
- }
- &.datatable {
- &.has-columns-hidden {
- tbody {
- tr {
- td {
- a {
- word-break: break-all;
- }
- span.responsiveExpander {
- top: 0!important;
- left: 0;
- bottom: 0;
- border: 0;
- border-radius: 0;
- height: 100%;
- width: 44px;
- display: -webkit-box;
- display: flex;
- -webkit-box-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- align-items: center;
- position: absolute;
- text-align: center;
- text-indent: 0!important;
- outline: 0;
- background-color: @gray-lighter;
- &:before {
- font-weight: 500;
- }
- }
-
- &:first-child {
- padding-left: 60px;
- }
- }
- }
- }
- }
- }
- }
- }
-
- .dataTables_filter, .dataTables_info {
- display: none;
- }
- .table-header {
- display: flex;
- align-items: center;
- padding: 10px 15px;
- border-bottom: 1px solid @default-border-color;
-
- label {
- font-weight: normal;
- margin: 0;
- margin-right: 10px;
- }
-
- .btn {
- background-color: @white!important;
- border: 1px solid @default-border-color!important;
- padding: 3px 6px;
- }
- }
- .dataTables_paginate {
- margin: 0;
- white-space: nowrap;
- display: flex;
- align-items: center;
- padding: 10px 15px;
- border-top: 1px solid @default-border-color;
- justify-content: center;
-
- .pagination {
- margin: 0;
- }
- }
-
- .dataTables_length {
- border-top: 1px solid @default-border-color;
- label {
- display: flex;
- align-items: center;
- text-align: left;
- white-space: nowrap;
- justify-content: center;
- padding: 10px 15px;
- margin: 0;
- }
-
- &:after {
- display: block;
- content: "";
- clear: both;
- }
- }
-
- @media (min-width: 576px) {
- .dataTables_paginate {
- float: right;
- text-align: right;
- justify-content: flex-end;
- border-top: 0 none;
- }
- .dataTables_length {
- label {
- justify-content: flex-start;
- }
- }
- }
-
- &.domain-pricing-table {
- box-shadow: none!important;
- border: 0 none;
-
- table {
- box-shadow: @box-shadow;
- border: 1px solid @default-border-color;
- }
- .dataTables_filter {
- display: block;
- }
- }
- }
- /**
- * -------------------------
- * @Network Status
- * -------------------------
- */
-
- .network-status {
- .network-status-top {
- display: flex;
- align-items: center;
-
- label {
- font-weight: normal;
- margin: 0;
- margin-right: 10px;
- }
-
- .btn {
- background-color: @white!important;
- border: 1px solid @default-border-color!important;
- padding: 3px 6px;
- }
- }
- &.panel {
- .panel-body {
- border-bottom: 1px solid @default-border-color;
- .status-title {
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-wrap: wrap;
- margin-bottom: 1rem;
- h4 {
- margin: 0;
- }
- }
- }
- .panel-footer {
- background-color: transparent;
- border-top: 0 none;
- .network-status-pagination {
- display: flex;
- align-items: center;
- justify-content: right;
-
- .pagination {
- margin-bottom: 0;
- }
- }
- }
- }
- }
- /**
- * -------------------------
- * Markdown Editor
- * -------------------------
- */
- .md-editor {
- .md-header {
- .btn {
- [class*="fa-"], [class*="glyphicon-"] {
- display: inline-block;
- margin-right: 0;
- }
- }
- .btn-sm {
- padding: 5px 10px;
- border: 1px solid @default-border-color!important;
- }
- .btn-default {
- background-color: @white;
- color: @baseFontcolor;
-
- &:hover, &:focus {
- background-color: @bg-color;
- }
- }
- }
-
- .markdown-editor-status {
- text-align: left;
- }
- }
- /**
- * -------------------------
- * kbsuggestions
- * -------------------------
- */
- .kbsuggestions, .kbarticles, .kbcat {
- border: 1px solid @default-border-color;
- padding: 0;
- a, .kb-article {
- display: block;
- padding: 15px;
- font-size: @baseFontSize + 2;
- font-weight: 500;
- text-decoration: none;
- cursor: pointer;
-
- .glyphicon, .far, .fal, .fas {
- color: @link-color;
- }
- p {
- font-size: @baseFontSize;
- font-weight: normal;
- color: @baseFontcolor;
- margin-bottom: 0;
- }
- &:not(:last-of-type) {
- border-bottom: 1px solid @default-border-color;
- }
-
- &:hover, &focus {
- background-color: @bg-color;
- }
- .admin-edit-link {
- float: right;
- a {
- display: inline-block;
- padding: 0;
- background-color: transparent;
- font-size: @baseFontSize;
- font-weight: normal;
-
- &:hover, &focus {
- background-color: transparent;
- }
-
- }
- }
-
- }
- }
- .kbarticles, .kbsuggestions {
- border-radius: 4px;
- }
- .kbcat {
- border: 0 none;
- .kb-article {
- border: 1px solid @default-border-color;
- border-radius: 4px;
- margin-bottom: 20px;
-
- }
- }
- /**
- * -------------------------
- * annuncements
- * -------------------------
- */
- .article {
- .article-content {
- margin-bottom: 2rem;
- color: @light-text-color;
- }
- .kb-article-details {
- display: flex;
- align-items: center;
- font-size: @baseFontSize;
- li {
- &:not(:first-child) {
- padding-left: 1rem;
- }
- }
- @media (max-width: 767px) {
- flex-direction: column;
- align-items: flex-start;
- li {
- margin-bottom: 7.5px;
- &:not(:first-child) {
- padding-left: 0;
- }
-
- &:last-child {
- margin-bottom: 0;
- }
- }
-
- }
- }
- .article-tools {
- display: flex;
- align-items: center;
-
- .btn-icon {
- margin-left: auto;
- }
- }
- .rate-article {
- margin: 15px 0 30px;
- }
- }
- /**
- * -------------------------
- * products & domain details
- * -------------------------
- */
-
- .product-details {
- margin: 0 0 30px 0!important;
- .product-holder {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- position: relative;
- min-height: 364px;
- background-color: @bg-color;
- border: 1px solid @default-border-color;
- border-radius: 4px;
-
- .product-content {
- display: flex;
- flex-direction: column;
- flex: 1;
- justify-content: center;
- align-items: center;
- padding: 30px;
-
- a {
- text-decoration: none;
- color: @baseFontcolor;
- }
- .product-image {
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 60px;
- line-height: 1em;
- margin-bottom: 1rem;
-
- .fa-circle {
- border: 3px solid @white;
- border-radius: 25px;
- transform: rotate(-20deg);
- }
-
- .fa-circle {
- color: @brand-primary;
- }
- }
- }
-
- .product-footer {
- width: 100%;
- padding: 7.5px 30px;
- text-align: center;
- border-top: 1px solid @default-border-color;
- font-size: 12px;
-
- .list-inline {
- margin: 0;
-
- li {
- padding-left: 0;
- padding-right: 3px;
- img {
- vertical-align: top;
- }
- &:last-child {
- padding-right: 0;
- }
- }
- }
- a {
- color: @baseFontcolor;
- text-decoration: none;
-
- &.btn {
- color: @white;
- }
- }
- }
-
- .status-sticker-wrapper {
- position: absolute;
- top: 25px;
- left: -10px;
- .status-sticker {
- display: block;
- font-size: @baseFontSize;
- color: @white;
- font-weight: 500;
- text-align: center;
- position: relative;
- left: 0;
- top: 0;
- white-space: nowrap;
- padding: 7.5px 15px;
- border-radius: 4px;
-
- &.active, &.product-status-completed {
- background-color: #46a546;
- }
-
- &.product-status-pending, &.product-status-pendingregistration, &.product-status-redemption, &.product-status-grace {
- background-color: #F89406;
- }
- &.product-status-expired, &.product-status-transferredaway, &.product-status-pendingtransfer {
- background-color: #666;
- }
- }
- }
-
- @media only screen and (max-width: 767px) {
- margin-bottom: 20px;
- }
- }
-
- .product-info {
- display: flex;
- padding: 20px 15px;
- min-height: 364px;
- background-color: @white;
- border-radius: 4px;
- border: 1px solid @default-border-color;
-
- &.cpanel-usage-stats {
- display: block;
-
- div[class*=col-] {
- display: block;
- }
-
- .usage-stats {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- margin-top: 25px;
- span:first-of-type {
- font-size: @baseFontSize;
- margin-bottom: 15px;
- }
- span:last-of-type {
- margin-top: 15px;
- font-size: @baseFontSize - 1;
- }
- }
-
- .cPanelExtrasPurchasePanel {
- margin: 20px -15px -20px;
- border-top: 1px solid @default-border-color;
- padding: 0 30px;
- background-color: @bg-color;
- border-radius: 0 0 4px 4px;
-
- h3, h4, h5 {
- margin: 10px 0;
- }
-
- .btn, .form-group {
- margin-bottom: 10px;
- }
- }
- }
- }
- .row {
- &.row-eq-height {
- flex-wrap: nowrap;
- }
- }
- }
- /**
- * -------------------------
- * list-info
- * -------------------------
- */
-
- .list-info {
- margin: 0; padding: 0;
-
- li {
- display: flex;
-
- .list-heading {
- color: @light-text-color;
- }
- }
-
- &.list-info-bordered {
- li {
- margin: 0!important;
- padding: 0.625rem 0.9375rem;
-
- &:not(:last-of-type) {
- border-bottom: 1px solid @default-border-color;
- }
- }
- }
-
- &.list-v {
- li {
- flex-direction: column;
- .list-text {
- font-size: @baseFontSize + 2;
- }
- &:not(:last-of-type) {
- margin-bottom: 15px;
- }
- }
- }
-
- &.list-info-50 {
- li {
- flex-direction: column;
-
- @media (min-width: 768px) {
- flex-direction: row;
- .list-heading, .list-text {
- flex-basis: 50%;
- word-break: break-word;
- }
- }
-
- &:not(:last-of-type) {
- margin-bottom: 15px;
- }
- }
- }
- }
- /**
- * -------------------------
- * row eq height
- * -------------------------
- */
- .row {
- &.row-eq-height {
- display: flex;
- flex-wrap: wrap;
-
- div[class*=col-] {
- display: flex;
- }
-
- div[class*=col-]>* {
- width: 100%;
- }
-
- @media (max-width: 767px) {
- &.row-eq-height-sm {
- flex-direction: column;
- }
- }
- }
- }
-
- /**
- * -------------------------
- * custom switch
- * -------------------------
- */
- .switch {
- position: relative;
- height: 24px;
- width: 40px;
- cursor: pointer;
- }
- .switch--text {
- width: 50px;
- }
- .switch__checkbox {
- position: absolute;
- opacity: 0;
- }
- .switch__container {
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- background-color: @brand-primary;
- }
- .switch__handle {
- position: absolute;
- top: 2px;
- right: 2px;
- z-index: 2;
- display: block;
- height: 20px;
- width: 20px;
- background-color: @white;
- }
- .switch__container, .switch__handle {
- border-radius: 12px;
- transition: .24s ease;
- }
- .switch--text {
- .switch__checkbox+.switch__container {
- &:after {
- position: absolute;
- top: 1px;
- bottom: 0;
- display: flex;
- right: 6px;
- z-index: 1;
- align-items: center;
- content: "off";
- color: @white;
- font-size: 11px;
- font-weight: 400;
- text-transform: uppercase;
- }
- }
-
- .switch__checkbox:checked+.switch__container {
- &:after {
- position: absolute;
- top: 1px;
- bottom: 0;
- display: -webkit-box;
- display: flex;
- left: 8px;
- z-index: 1;
- -webkit-box-align: center;
- align-items: center;
- content: "on";
- color: #fff;
- font-size: 11px;
- font-weight: 400;
- text-transform: uppercase;
- }
- }
- .switch__checkbox+.switch__container {
- .switch__handle {
- right: 28px;
- }
- }
- .switch__checkbox:checked+.switch__container {
- .switch__handle {
- right: 2px;
- }
- }
- }
- .social-signin-btns {
- margin-top: 20px;
- }
- /**
- * -------------------------
- * View Invoices
- * -------------------------
- */
- .TM-card {
- &.invoice, &.quote {
- position: relative;
- overflow: hidden;
-
- .company-logo {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 20px;
- img {
- height: 40px;
- max-height: 40px;
- }
- h2 {
- margin: 0;
- font-weight: 900;
- }
- }
-
- h4 {
- border-bottom: 1px solid @brand-primary;
- display: inline-block;
- }
- .invoice-info, .quote-info {
- display: flex;
- flex-direction: column;
- padding: 15px 0;
- border-top: 2px dotted #ddd;
- border-bottom: 2px dotted #ddd;
-
- @media (min-width: 768px) {
- justify-content: space-between;
- flex-direction: row;
- align-items: center;
- }
- .title {
- display: flex;
- font-size: 27px;
- font-weight: 500;
- align-items: center;
-
- .label {
- align-self: center;
- margin-left: 10px;
- margin-bottom: 0;
-
- display: inline-flex;
- padding: 6px;
- font-size: @baseFontSize;
- vertical-align: center;
- text-transform: uppercase;
- font-weight: normal;
- }
- }
- }
-
- table {
- tr {
- &.active {
- border-top: 2px solid darken(#ddd, 10%);
- td {
- background-color: #ddd;
- }
- }
- }
- }
- }
- }
- /**
- * -------------------------
- * @section Domain Checker
- * -------------------------
- */
- div.domainresults div:not(.btn-group) {
- margin: 0;
- padding: 10px 25px;
- background-color: #ddd;
- color: #666;
- font-size: 1.0em;
- border-radius: 6px 6px 0 0;
- }
- div.domainresults div:not(.btn-group) span {
- padding-left: 20px;
- font-size: 14px;
- color: #888;
- }
- div.domainresults table tr td {
- padding: 5px 30px;
- line-height: 40px;
- }
- .@{brand}-domain-checker-container {
- background: url(../../images/domain-hero.jpg) center center no-repeat;
- color: @white; text-align: center;
- background-size: cover;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- z-index: 1;
- position: relative;
- border-radius: 10px;
- padding: 42px 0;
-
- &:before {
- background: #000;
- border-radius: 10px;
- content: "";
- z-index: -1;
- position: absolute;
- height: 100%;
- width: 100%;
- left: 0;
- right: 0;
- opacity:0.70;
- top: 0;
- }
-
- .input-group-box {
- margin: 0 auto;
- padding: 10px;
- width: 100%;
- background-color: @white;
- border-radius: 10px;
-
- .btn {
- font-size: 1rem;
- }
- }
- .domain-bulk-options-box {
- position: absolute;
- top: 18px;
- right: 134px;
- z-index:100;
- }
- }
- @media (max-width: 767px) {
- .@{brand}-domain-checker-container {
- .input-group-box {
- .form-control {
- border-radius: 0 !important;
- }
- .input-group-btn {
- display: block;
- width: 100%;
-
- .btn {
- width: 100%;
- border-radius: 0;
- }
- }
- }
- }
- }
- .domain-check-availability {
- width: 100px;
- }
- .domain-step-options {
- min-height: 300px;
- }
- .domain-checker-result-headline {
- margin: 1rem;
- text-align: center;
- }
- .domain-checker-available {
- font-size: 1.5rem;
- color: #5cb85c;
- }
- .domain-checker-unavailable,
- .domain-checker-invalid {
- color: #d9534f;
- }
- div.domainresults div.domain-checkout-area {
- display: none;
- float: right;
- padding: 8px 40px 0;
- }
- .domain-lookup-result {
- .domain-price {
- .price {
- font-weight: 900;
- font-size: 1.5rem;
- }
- }
- }
- .domain-disclaimer-area {
- margin: 0 0 25px 0;
- font-size: 12px;
- }
- .domain-bulk-domain-well {
- width: 60%;
- }
- .domain-tld-pricing-table-responsive {
- border: 0;
- margin-bottom: 0;
- }
- a.domain-tld-pricing-category {
- display: block;
- text-align: center;
- }
- .featured-tlds-container {
- margin: 35px 0;
-
- .featured-tld {
- margin: 0 0 20px;
- overflow: hidden;
- border: 1px solid @default-border-color;
- background-color: @white;
- .img-container {
- display: flex;
- justify-content: center;
- align-items: flex-end;
- position: relative;
-
-
- @media (min-width: 768px) {
- padding: 40px;
- }
- }
- .price {
- border-top: 1px solid @default-border-color;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- }
- .featured-tld {
- margin: 0 0 20px 0;
- border-radius: 4px;
- box-shadow: 0 6px 20px rgba(0,0,0,.1);
- }
- .featured-tld .img-container {
- padding: 20px 0;
- height: 115px;
- line-height: 75px;
- overflow: hidden;
- text-align: center;
- }
- @media (max-width: 767px) {
- .featured-tld .img-container {
- height: 80px;
- line-height: 40px;
- }
- }
- .featured-tld .img-container img {
- max-width: 70%;
- max-height: 100%;
- }
- .featured-tld .price {
- padding: 10px 5px;
- font-weight: 400;
- line-height: 28px;
- text-align: center;
- border-radius: 0 0 4px 4px;
- }
- .tld-filters {
- margin: 0 0 25px 0;
- }
- .tld-filters a {
- display: inline-block;
- margin-bottom: 4px;
- padding: 5px 6px;
- font-size: 90%;
- font-weight: normal;
- border-radius: 2px;
- }
- .@{brand}-domain-page, .onepage_cart .ajaxcart_cont {
- .suggested-domains {
- margin-top: 1rem;
- .panel-heading {
- border-color: @themeColor;
- font-weight: 500;
- }
- .list-group + .panel-footer {
- border: 1px solid @default-border-color;
- border-top-width: 0;
-
- }
- .list-group-item {
- border: 1px solid @default-border-color;
-
- .added {
- [class*="fa-"] {
- margin-right: 4px;
- }
- }
- }
- .list-group-item + .list-group-item {
- border-top-width: 0;
- }
- }
- .domain-pricing {
- font-size: 14px;
- .table-header {
- flex-direction: column;
- justify-content: space-between;
- align-items: normal;
-
- @media (min-width: 768px) {
- flex-direction: row;
- align-items: center;
- }
-
- .category-filter {
- width:100%;
- .tld-filters {
- display: flex;
- flex-wrap: wrap;
- @media (min-width: 768px) {
- max-width: 70%;
- }
-
- a {
- &:not(:last-child) {
- margin-right: 4px;
- }
- }
- }
- }
- }
- .table-tlds {
- &.table>thead>tr>th {
- font-size: 100%;
- }
- .tld-name {
- font-size: 120%;
- font-weight: 500;
- span {
- color: @themeColor;
- }
- }
- .tld-label {
- display: block;
- }
- }
-
- @media (min-width: 768px) {
- .table-tlds {
- .tld-label {
- display: none;
- }
- }
- }
-
- @media (max-width: 767.98px) {
- .table-tlds {
- &.table>tbody>tr {
- display: flex;
- flex-wrap: wrap;
- &:not(:last-child) {
- border-bottom: 1px solid @default-border-color;
- }
- }
- &.table>tbody>tr td {
- flex: 1;
- display: block;
- border: none;
- min-width: 80px;
- padding: 0.5rem 1rem;
-
- &:first-child {
- padding-bottom: 0;
- width: 100%;
- flex: 100%;
- }
- }
- &.table>thead {
- display: none;
- }
- }
- }
-
- @media (max-width: 767px) {
- .tld-pricing-header {
- display: none;
- }
- }
- }
- }
- .tld-sale-group {
- padding: 1px 3px;
- text-transform: uppercase;
- color: #000;
- font-weight: 700;
- }
- .tld-sale-group-hot {
- background-color: #f9615a;
- color: @white;
- }
- .tld-sale-group-sale {
- background-color: #f7d458;
- }
- .tld-sale-group-new {
- background-color: #2ad588;
- }
- .action-icon-btns {
- a {
- position: relative;
- margin: 0 0 10px 0;
- padding: 10px 0 15px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- transition: all 0.3s ease;
- text-decoration: none;
- .ico-container {
- margin: 10px auto;
- font-size: 2.6em;
- line-height: 60px;
- transition: all 0.3s ease;
- i {
- color: @themeColor;
- }
- }
- span {
- color: @baseFontcolor;
- }
- &:hover, &:focus {
- .ico-container {
- font-size: 3.4em;
- }
- }
- }
- }
- .home-domain-search {
- .tld-logos {
- margin: 0;
- padding: 0;
- list-style: none;
- font-size: 1.4em;
- font-weight: 300;
- li {
- float: left;
- background-color: @white;
- color: @baseFontcolor;
- }
- img {
- width: 60px;
- }
- }
- }
- //order form fix
- .ajaxcart_cont {
- .input-group-text {
- margin-right: -0.25rem;
- }
- }
- #order-standard_cart {
- blockquote, .blockquote {
- margin: 1rem 0;
- font-size: 13px;
- font-weight: normal;
- }
- &.modern {
- .domains-section {
- padding: 3rem 0 7rem;
- .h1 {
- font-size: 26px;
- @media (min-width: 768px) {
- font-size: 43px;
- }
- }
-
- .default-captcha {
- p {
- color: @baseFontcolor;
- }
- }
- .search-query {
- border: 0 none!important;
- }
- }
-
- .@{brand}-domain-page {
- margin: -6rem auto 6rem;
- padding: 0 1rem;
- }
- .table-container {
- margin-top: 1rem;
- }
- #DomainSearchResults {
- padding: 1rem;
- background-color: @white;
- border-radius: 10px 10px 0 0;
- }
-
- @media (min-width: 768px) {
- .domains-section {
- padding: 4rem 0 10rem;
- .h1 {
- font-size: 43px;
- }
- }
- .@{brand}-domain-page {
- margin: -6rem auto 6rem;
- padding: 0 1rem;
- }
- }
- }
-
- .addon-promo-container {
- h4 {
- margin-top: 0;
- }
- .description {
- margin: 0 0 1rem!important;
- br {
- display: none;
- }
- a {
- margin-left: 2px;
- }
- }
- div.pull-right {
- display: flex;
- justify-content: space-between;
- float: none!important;
- text-align: right;
- margin-bottom: 0.50rem;
- font-size: 14px;
-
- strong {
- font-weight: 500!important;
- }
- }
-
- div.pull-right:before {
- content: "Choose Package";
- opacity: 0.80;
- }
-
- .logo {
- .logo-icon {
- width: 80px;
- padding: 0.5rem;
- background-color: @white;
- }
- }
- }
- }
- .invoice-summary-card {
- .invoice-summary {
- .summary-content {
- position: relative;
- overflow: auto;
- max-height: 500px;
- font-size: 80%;
- .summary-list {
- margin: 0;
- padding: 4px;
- list-style: none;
-
- .list-item {
- display: flex;
- justify-content: space-between;
- padding: 0.5rem 0;
-
- .item-name {
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .item-value {
- text-align: right;
- padding-left: 0.05rem;
- }
- }
-
- &:first-child {
- padding: 0;
- }
-
- &:last-child {
- padding-bottom: 0;
- }
- }
- }
- }
-
- .price {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- .price-total {
- display: flex;
- align-items: center;
- font-size: 80%;
- }
- .price-amount {
- font-size: 40px;
- font-weight: 900;
- }
- }
- }
- #frmPayment .paymethod-info {
- display: flex;
- align-items: center;
-
- label {
- margin-bottom: 0;
-
- .fab {
- font-size: 1.5rem;
- }
- }
- }
- .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on, .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off, .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
- word-wrap: normal;
- }
|