widgets.less 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155
  1. /*ROW -IN*/
  2. .row-in i {
  3. font-size: 24px;
  4. }
  5. /********* Megamenu widgets**********/
  6. .megamenu {
  7. left: 0px;
  8. right: 0px;
  9. width: 100%;
  10. }
  11. .mega-dropdown {
  12. position: static !important;
  13. }
  14. .mega-dropdown-menu {
  15. padding: 20px;
  16. width: 100%;
  17. padding-left: 80px;
  18. box-shadow: none;
  19. -webkit-box-shadow: none;
  20. border: 0px;
  21. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  22. > li > ul {
  23. padding: 0;
  24. margin: 0;
  25. > li {
  26. list-style: none;
  27. > a {
  28. display: block;
  29. padding: 8px 0px;
  30. clear: both;
  31. line-height: 1.428571429;
  32. color: @bodytext;
  33. white-space: normal;
  34. &:hover,
  35. &:focus {
  36. text-decoration: none;
  37. color: @themecolor;
  38. }
  39. }
  40. }
  41. }
  42. .dropdown-header {
  43. font-size: 16px;
  44. font-weight: 500;
  45. padding: 8px 0;
  46. margin-top: 12px;
  47. }
  48. }
  49. .mega-dropdown-menu li.demo-box a {
  50. color: @white;
  51. display: block;
  52. &:hover {
  53. opacity: 0.8;
  54. }
  55. }
  56. /*Inbox widgets*/
  57. .mailbox {
  58. width: 280px;
  59. overflow: auto;
  60. padding-bottom: 0px;
  61. }
  62. .message-center {
  63. a {
  64. border-bottom: 1px solid @border;
  65. display: block;
  66. padding: 9px 15px;
  67. &:hover {
  68. background: @extralight;
  69. }
  70. }
  71. .user-img {
  72. width: 40px;
  73. float: left;
  74. position: relative;
  75. margin: 0 10px 15px 0px;
  76. img {
  77. width: 100%;
  78. }
  79. .profile-status {
  80. border: 2px solid @white;
  81. border-radius: 50%;
  82. display: inline-block;
  83. height: 10px;
  84. left: 30px;
  85. position: absolute;
  86. top: 1px;
  87. width: 10px;
  88. }
  89. .online {
  90. background: @success;
  91. }
  92. .busy {
  93. background: @danger;
  94. }
  95. .away {
  96. background: @warning;
  97. }
  98. .offline {
  99. background: @warning;
  100. }
  101. }
  102. .mail-contnet {
  103. h5 {
  104. margin: 0px;
  105. font-weight: 400;
  106. text-overflow: ellipsis;
  107. overflow: hidden;
  108. white-space: nowrap;
  109. }
  110. .mail-desc {
  111. font-size: 12px;
  112. display: block;
  113. margin: 5px 0;
  114. text-overflow: ellipsis;
  115. overflow: hidden;
  116. white-space: nowrap;
  117. color: @dark;
  118. }
  119. .time {
  120. display: block;
  121. font-size: 10px;
  122. color: @dark;
  123. }
  124. }
  125. }
  126. .mail-contnet a.action {
  127. margin-left: 10px;
  128. font-size: 12px;
  129. visibility: hidden;
  130. }
  131. .mail-contnet:hover a.action {
  132. visibility: visible;
  133. }
  134. /*Inbox Center*/
  135. .inbox-center {
  136. .unread td {
  137. font-weight: 400;
  138. }
  139. a {
  140. color: @bodytext;
  141. padding: 2px 0 3px 0;
  142. overflow: hidden;
  143. text-overflow: ellipsis;
  144. white-space: nowrap;
  145. display: inline-block;
  146. }
  147. }
  148. /*Comment center*/
  149. .comment-center {
  150. margin: 0 -25px;
  151. .comment-body {
  152. border-bottom: 1px solid @border;
  153. display: table;
  154. width: 100%;
  155. padding: 20px 25px;
  156. &:hover {
  157. background: @extralight;
  158. }
  159. }
  160. .user-img {
  161. width: 40px;
  162. display: table-cell;
  163. position: relative;
  164. margin: 0 10px 0px 0px;
  165. img {
  166. width: 100%;
  167. }
  168. }
  169. .mail-contnet {
  170. display: table-cell;
  171. padding-left: 15px;
  172. vertical-align: top;
  173. h5 {
  174. margin-top: 0px;
  175. font-weight: 400;
  176. text-overflow: ellipsis;
  177. overflow: hidden;
  178. white-space: nowrap;
  179. }
  180. .mail-desc {
  181. font-size: 14px;
  182. display: block;
  183. margin: 15px 0;
  184. line-height: 25px;
  185. color: @dark-text;
  186. overflow: hidden;
  187. max-height: 52px;
  188. text-overflow: ellipsis;
  189. }
  190. .time {
  191. display: inline-block;
  192. font-size: 12px;
  193. color: @muted;
  194. }
  195. }
  196. }
  197. /*Sales report*/
  198. .sales-report {
  199. background: @extralight;
  200. margin: 12px -25px;
  201. padding: 15px;
  202. }
  203. /*Task*/
  204. .dropdown-tasks,
  205. .dropdown-alerts {
  206. padding: 0px;
  207. }
  208. .dropdown-tasks li a,
  209. .dropdown-alerts li a,
  210. .mailbox li > a {
  211. padding: 15px 20px;
  212. }
  213. .dropdown-tasks li.divider,
  214. .dropdown-alerts li.divider {
  215. margin: 0px;
  216. }
  217. /*col-in*/
  218. .row-in-br {
  219. border-right: 1px solid @border;
  220. }
  221. .col-in {
  222. list-style: none;
  223. padding: 0px;
  224. margin: 0px;
  225. li {
  226. display: inline-block;
  227. vertical-align: middle;
  228. padding: 0 10px;
  229. .circle {
  230. display: inline-block;
  231. }
  232. &.col-middle {
  233. width: 40%;
  234. }
  235. &.col-last {
  236. float: right;
  237. }
  238. }
  239. h3 {
  240. font-size: 36px;
  241. font-weight: 100;
  242. }
  243. }
  244. /* Basic List */
  245. .basic-list {
  246. padding: 0px;
  247. li {
  248. display: block;
  249. padding: 15px 0px;
  250. border-bottom: 1px solid @border;
  251. line-height: 27px;
  252. }
  253. }
  254. .basic-list li:last-child {
  255. border-bottom: 0px;
  256. }
  257. /*Steam line widget*/
  258. .steamline {
  259. position: relative;
  260. border-left: 1px solid @border;
  261. margin-left: 20px;
  262. .sl-left {
  263. float: @lft;
  264. margin-left: -20px;
  265. z-index: 1;
  266. width: 40px;
  267. line-height: 40px;
  268. text-align: center;
  269. height: 40px;
  270. border-radius: 100%;
  271. color: @white;
  272. background: @dark;
  273. margin-right: 15px;
  274. img {
  275. max-width: 40px;
  276. }
  277. }
  278. }
  279. .steamline .sl-right {
  280. padding-left: 50px;
  281. .desc,
  282. .inline-photos {
  283. margin-bottom: 30px;
  284. }
  285. div > a {
  286. color: @dark;
  287. font-weight: 400;
  288. }
  289. }
  290. .steamline .sl-item {
  291. border-bottom: 1px solid @border;
  292. margin: 20px 0;
  293. }
  294. .sl-date {
  295. font-size: 10px;
  296. color: @muted;
  297. }
  298. .time-item {
  299. border-color: $border;
  300. padding-bottom: 1px;
  301. position: relative;
  302. &:before {
  303. content: " ";
  304. display: table;
  305. }
  306. &:after {
  307. background-color: @white;
  308. border-color: @border;
  309. border-radius: 10px;
  310. border-style: solid;
  311. border-width: 2px;
  312. bottom: 0;
  313. content: '';
  314. height: 14px;
  315. left: 0;
  316. margin-left: -8px;
  317. position: absolute;
  318. top: 5px;
  319. width: 14px;
  320. }
  321. }
  322. .time-item-item {
  323. &:after {
  324. content: " ";
  325. display: table;
  326. }
  327. }
  328. .item-info {
  329. margin-bottom: 15px;
  330. margin-left: 15px;
  331. p {
  332. margin-bottom: 10px !important;
  333. }
  334. }
  335. /*User-box*/
  336. .user-bg {
  337. margin: -25px;
  338. height: 230px;
  339. overflow: hidden;
  340. position: relative;
  341. .overlay-box {
  342. background: @purple;
  343. opacity: 0.9;
  344. position: absolute;
  345. top: 0px;
  346. left: 0px;
  347. right: 0px;
  348. height: 100%;
  349. text-align: center;
  350. .user-content {
  351. padding: 15px;
  352. margin-top: 30px;
  353. }
  354. }
  355. }
  356. .user-btm-box {
  357. padding: 40px 0 10px;
  358. clear: both;
  359. overflow: hidden;
  360. }
  361. /* Vertical Carousel */
  362. .vertical .carousel-inner {
  363. height: 100%;
  364. position: relative;
  365. }
  366. .carousel.vertical .item {
  367. -webkit-transition: 0.6s ease-in-out top;
  368. -moz-transition: 0.6s ease-in-out top;
  369. -ms-transition: 0.6s ease-in-out top;
  370. -o-transition: 0.6s ease-in-out top;
  371. transition: 0.6s ease-in-out top;
  372. }
  373. .carousel.vertical .active {
  374. top: 0;
  375. }
  376. .carousel.vertical .next {
  377. top: 400px;
  378. }
  379. .carousel.vertical .prev {
  380. top: -400px;
  381. }
  382. .carousel.vertical .next.left,
  383. .carousel.vertical .prev.right {
  384. top: 0;
  385. }
  386. .carousel.vertical .active.left {
  387. top: -400px;
  388. }
  389. .carousel.vertical .active.right {
  390. top: 400px;
  391. }
  392. .carousel.vertical .item {
  393. left: 0;
  394. }
  395. .twi-user img {
  396. margin-right: 20px;
  397. width: 50px;
  398. }
  399. .twi-user {
  400. margin: 18px 0;
  401. }
  402. .carousel-inner h3 {
  403. /*height: 112px;*/
  404. overflow: hidden;
  405. }
  406. .carousel-inner>.item>img {
  407. width: 100%;
  408. }
  409. /*Chart Box*/
  410. .chart-box {
  411. margin: 25px -15px -17px -17px;
  412. }
  413. /*Todo list*/
  414. .list-task .task-done span {
  415. text-decoration: line-through;
  416. }
  417. /* Chat widget */
  418. .chat-list {
  419. list-style: none;
  420. padding: 0px 20px;
  421. li {
  422. margin-bottom: 24px;
  423. overflow: auto;
  424. }
  425. .chat-image {
  426. display: inline-block;
  427. float: left;
  428. text-align: center;
  429. width: 50px;
  430. img {
  431. border-radius: 100%;
  432. width: 100%;
  433. }
  434. }
  435. .chat-text {
  436. background: #e5f7ff;
  437. border-radius: 0px 8px 8px 8px;
  438. display: inline-block;
  439. padding: 15px;
  440. font-size: 14px;
  441. position: relative;
  442. h4 {
  443. color: #1a2942;
  444. display: block;
  445. font-size: 14px;
  446. font-style: normal;
  447. font-weight: 500;
  448. margin: 0;
  449. line-height: 15px;
  450. position: relative;
  451. }
  452. p {
  453. margin: 0px;
  454. padding-top: 3px;
  455. }
  456. b {
  457. font-size: 10px;
  458. opacity: 0.8;
  459. }
  460. }
  461. .chat-body {
  462. display: inline-block;
  463. float: left;
  464. font-size: 12px;
  465. margin-left: 12px;
  466. width: 65%;
  467. }
  468. .odd {
  469. .chat-image {
  470. float: right !important;
  471. }
  472. .chat-body {
  473. float: right !important;
  474. margin-right: 12px;
  475. text-align: right;
  476. }
  477. .chat-text {
  478. background: #f7f7f7;
  479. border-radius: 8px 0px 8px 8px;
  480. }
  481. }
  482. }
  483. .chat-send {
  484. padding-left: 0px;
  485. padding-right: 30px;
  486. button {
  487. width: 100%;
  488. }
  489. }
  490. /*Weather*/
  491. .weather-box {
  492. .weather-top {
  493. overflow: hidden;
  494. padding: 10px 25px;
  495. margin: 0 -25px;
  496. background: @extralight;
  497. h2 {
  498. line-height: 24px;
  499. small {
  500. font-size: 13px;
  501. }
  502. }
  503. .today_crnt {
  504. font-size: 45px;
  505. font-weight: 100;
  506. canvas {
  507. display: inline-block;
  508. margin-right: 10px;
  509. vertical-align: middle;
  510. }
  511. }
  512. }
  513. .weather-info {
  514. padding: 10px 0;
  515. }
  516. .weather-time {
  517. overflow: hidden;
  518. text-align: center;
  519. padding-top: 15px;
  520. li span {
  521. display: block;
  522. }
  523. li canvas {
  524. font-size: 20px;
  525. margin: 10px 0;
  526. }
  527. }
  528. }
  529. .demo-container {
  530. width: 100%;
  531. height: 350px;
  532. }
  533. .demo-placeholder {
  534. width: 100%;
  535. height: 100%;
  536. font-size: 14px;
  537. line-height: 1.2em;
  538. }
  539. /*Notification alert*/
  540. .myadmin-alert {
  541. border-radius: 0px;
  542. color: #fff;
  543. padding: 12px 30px 12px 12px;
  544. position: relative;
  545. text-align: left;
  546. }
  547. .myadmin-alert a {
  548. color: inherit;
  549. font-weight: 600;
  550. text-decoration: underline;
  551. }
  552. .myadmin-alert h4 {
  553. color: inherit;
  554. font-size: 14px;
  555. font-weight: 600;
  556. line-height: normal;
  557. margin: 0;
  558. }
  559. .myadmin-alert .img {
  560. border-radius: 3px;
  561. height: 40px;
  562. left: 12px;
  563. position: absolute;
  564. top: 12px;
  565. width: 40px;
  566. }
  567. .myadmin-alert-img {
  568. min-height: 64px;
  569. padding-left: 65px;
  570. }
  571. .myadmin-alert-icon {
  572. padding-left: 20px;
  573. }
  574. .myadmin-alert-icon i {
  575. padding-right: 10px;
  576. }
  577. .myadmin-alert .closed {
  578. color: rgba(255, 255, 255, 0.5);
  579. font-size: 20px;
  580. font-weight: 500;
  581. padding: 4px;
  582. position: absolute;
  583. right: 3px;
  584. text-decoration: none;
  585. top: 0;
  586. }
  587. .myadmin-alert .closed:hover {
  588. color: #fff;
  589. }
  590. .myadmin-alert-click {
  591. cursor: pointer;
  592. padding-right: 12px;
  593. }
  594. .myadmin-alert .primary {
  595. background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
  596. border: medium none;
  597. border-radius: 3px;
  598. color: inherit;
  599. outline: 0 none;
  600. padding: 4px 10px;
  601. }
  602. .myadmin-alert .cancel {
  603. background: rgba(255, 255, 255, 0.4) none repeat scroll 0 0;
  604. border: medium none;
  605. border-radius: 3px;
  606. color: rgba(0, 0, 0, 0.8);
  607. outline: 0 none;
  608. padding: 4px 10px;
  609. }
  610. .myadmin-alert .primary:hover,
  611. .myadmin-alert .cancel:hover {
  612. opacity: 0.9;
  613. }
  614. .myadmin-alert-top,
  615. .myadmin-alert-bottom,
  616. .myadmin-alert-top-left,
  617. .myadmin-alert-top-right,
  618. .myadmin-alert-bottom-left,
  619. .myadmin-alert-bottom-right,
  620. .myadmin-alert-fullscreen {
  621. box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  622. display: none;
  623. position: fixed;
  624. z-index: 1000;
  625. }
  626. .myadmin-alert-top {
  627. left: 0;
  628. right: 0;
  629. top: 0;
  630. }
  631. .myadmin-alert-bottom {
  632. bottom: 0;
  633. left: 0;
  634. right: 0;
  635. }
  636. .myadmin-alert-top-left {
  637. left: 20px;
  638. top: 80px;
  639. }
  640. .myadmin-alert-top-right {
  641. right: 20px;
  642. top: 80px;
  643. }
  644. .myadmin-alert-bottom-left {
  645. bottom: 20px;
  646. left: 20px;
  647. }
  648. .myadmin-alert-bottom-right {
  649. bottom: 20px;
  650. right: 20px;
  651. }
  652. .myadmin-alert-fullsize {
  653. left: 50%;
  654. margin: -20px;
  655. top: 50%;
  656. }
  657. .alert-custom {
  658. background: @themecolor;
  659. color: @white;
  660. border-color: @themecolor;
  661. }
  662. .alert-inverse {
  663. background: @inverse;
  664. color: @white;
  665. border-color: @inverse;
  666. }
  667. .alert-success {
  668. background: @success;
  669. color: @white;
  670. border-color: @success;
  671. }
  672. .alert-dark {
  673. background: @bodytext;
  674. color: @white;
  675. border-color: @bodytext;
  676. }
  677. .alert-warning {
  678. background: @warning;
  679. color: @white;
  680. border-color: @warning;
  681. }
  682. .alert-danger {
  683. background: @danger;
  684. color: @white;
  685. border-color: @danger;
  686. }
  687. .alert-primary {
  688. background: @purple;
  689. color: @white;
  690. border-color: @purple;
  691. }
  692. .alert-info {
  693. background: @info;
  694. color: @white;
  695. border-color: @info;
  696. }
  697. .alert-info .closed {
  698. color: inherit;
  699. }
  700. .alert-info a.closed:hover {
  701. color: inherit;
  702. }
  703. /*custom tab*/
  704. .tab-content {
  705. margin-top: 30px;
  706. }
  707. .customtab {
  708. border-bottom: 2px solid @extralight;
  709. }
  710. .customtab li.active a,
  711. .customtab li.active a:hover,
  712. .customtab li.active a:focus {
  713. background: @white;
  714. border: 0px;
  715. border-bottom: 2px solid @themecolor;
  716. margin-bottom: -1px;
  717. color: @themecolor;
  718. }
  719. .customtab li a,
  720. .customtab li a:hover,
  721. .customtab li a:focus {
  722. border: 0px;
  723. }
  724. /*custom tab2*/
  725. .customtab2 {
  726. border-bottom: 1px solid @extralight;
  727. border-top: 1px solid @extralight;
  728. padding: 10px 0;
  729. }
  730. .customtab2 li.active a,
  731. .customtab2 li.active a:hover,
  732. .customtab2 li.active a:focus {
  733. background: @themecolor;
  734. border: 1px solid @themecolor;
  735. color: @white;
  736. }
  737. .customtab2 li a,
  738. .customtab2 li a:hover,
  739. .customtab2 li a:focus {
  740. border: 0px;
  741. }
  742. /*Vertical tabs*/
  743. .vtabs {
  744. display: table;
  745. .tabs-vertical {
  746. width: 150px;
  747. border-right: 1px solid @border;
  748. display: table-cell;
  749. vertical-align: top;
  750. li a {
  751. color: @dark;
  752. margin-bottom: 10px;
  753. }
  754. }
  755. .tab-content {
  756. display: table-cell;
  757. padding: 20px;
  758. vertical-align: top;
  759. }
  760. }
  761. .tabs-vertical li.active a,
  762. .tabs-vertical li.active a:hover,
  763. .tabs-vertical li.active a:focus {
  764. background: @themecolor;
  765. border: 0px;
  766. border-right: 2px solid @themecolor;
  767. margin-right: -1px;
  768. color: @white;
  769. }
  770. /*Custom vertical tab*/
  771. .customvtab .tabs-vertical li.active a,
  772. .customvtab .tabs-vertical li.active a:hover,
  773. .customvtab .tabs-vertical li.active a:focus {
  774. background: @white;
  775. border: 0px;
  776. border-right: 2px solid @themecolor;
  777. margin-right: -1px;
  778. color: @dark;
  779. }
  780. /*Nav pills*/
  781. .nav-pills>li.active>a,
  782. .nav-pills>li.active>a:focus,
  783. .nav-pills>li.active>a:hover {
  784. background: @themecolor;
  785. color: @white;
  786. }
  787. .nav-pills>li>a {
  788. color: @dark;
  789. border-radius: @radius;
  790. }
  791. /*Accordion*/
  792. .panel-group {
  793. .panel {
  794. .panel-heading {
  795. a[data-toggle=collapse].collapsed {
  796. &:before {
  797. content: '\e64b';
  798. }
  799. }
  800. .accordion-toggle.collapsed {
  801. &:before {
  802. content: '\e64b';
  803. }
  804. }
  805. a[data-toggle=collapse] {
  806. display: block;
  807. &:before {
  808. content: '\e648';
  809. display: block;
  810. float: right;
  811. font-family: 'themify';
  812. font-size: 14px;
  813. text-align: right;
  814. width: 25px;
  815. }
  816. }
  817. .accordion-toggle {
  818. display: block;
  819. &:before {
  820. content: '\e648';
  821. display: block;
  822. float: right;
  823. font-family: 'themify';
  824. font-size: 14px;
  825. text-align: right;
  826. width: 25px;
  827. }
  828. }
  829. }
  830. .panel-heading + .panel-collapse {
  831. .panel-body {
  832. border-top: none;
  833. }
  834. }
  835. }
  836. .panel-heading {
  837. padding: 12px 20px;
  838. }
  839. }
  840. /*Progressbars*/
  841. .progress {
  842. -webkit-box-shadow: none !important;
  843. background-color: @border;
  844. box-shadow: none !important;
  845. height: 4px;
  846. border-radius: @radius;
  847. margin-bottom: 18px;
  848. overflow: hidden;
  849. }
  850. .progress-bar {
  851. box-shadow: none;
  852. font-size: 8px;
  853. font-weight: 600;
  854. line-height: 12px;
  855. }
  856. .progress.progress-sm {
  857. height: 8px !important;
  858. .progress-bar {
  859. font-size: 8px;
  860. line-height: 5px;
  861. }
  862. }
  863. .progress.progress-md {
  864. height: 15px !important;
  865. .progress-bar {
  866. font-size: 10.8px;
  867. line-height: 14.4px;
  868. }
  869. }
  870. .progress.progress-lg {
  871. height: 20px !important;
  872. .progress-bar {
  873. font-size: 12px;
  874. line-height: 20px;
  875. }
  876. }
  877. .progress-bar-primary {
  878. background-color: @primary;
  879. }
  880. .progress-bar-success {
  881. background-color: @success;
  882. }
  883. .progress-bar-info {
  884. background-color: @info;
  885. }
  886. .progress-bar-megna {
  887. background-color: @megna;
  888. }
  889. .progress-bar-warning {
  890. background-color: @warning;
  891. }
  892. .progress-bar-danger {
  893. background-color: @danger;
  894. }
  895. .progress-bar-inverse {
  896. background-color: @inverse;
  897. }
  898. .progress-bar-purple {
  899. background-color: @purple;
  900. }
  901. .progress-bar-custom {
  902. background-color: @info;
  903. }
  904. .progress-animated {
  905. -webkit-animation-duration: 5s;
  906. -webkit-animation-name: myanimation;
  907. -webkit-transition: 5s all;
  908. animation-duration: 5s;
  909. animation-name: myanimation;
  910. transition: 5s all;
  911. }
  912. /* Progressbar Animated */
  913. @-webkit-keyframes myanimation {
  914. from {
  915. width: 0;
  916. }
  917. }
  918. @keyframes myanimation {
  919. from {
  920. width: 0;
  921. }
  922. }
  923. /* Progressbar Vertical */
  924. .progress-vertical {
  925. min-height: 250px;
  926. height: 250px;
  927. width: 4px;
  928. position: relative;
  929. display: inline-block;
  930. margin-bottom: 0;
  931. margin-right: 20px;
  932. .progress-bar {
  933. width: 100%;
  934. }
  935. }
  936. .progress-vertical-bottom {
  937. min-height: 250px;
  938. height: 250px;
  939. position: relative;
  940. width: 4px;
  941. display: inline-block;
  942. margin-bottom: 0;
  943. margin-right: 20px;
  944. .progress-bar {
  945. width: 100%;
  946. position: absolute;
  947. bottom: 0;
  948. }
  949. }
  950. .progress-vertical.progress-sm,
  951. .progress-vertical-bottom.progress-sm {
  952. width: 8px !important;
  953. .progress-bar {
  954. font-size: 8px;
  955. line-height: 5px;
  956. }
  957. }
  958. .progress-vertical.progress-md,
  959. .progress-vertical-bottom.progress-md {
  960. width: 15px !important;
  961. .progress-bar {
  962. font-size: 10.8px;
  963. line-height: 14.4px;
  964. }
  965. }
  966. .progress-vertical.progress-lg,
  967. .progress-vertical-bottom.progress-lg {
  968. width: 20px !important;
  969. .progress-bar {
  970. font-size: 12px;
  971. line-height: 20px;
  972. }
  973. }
  974. /*Timeline*/
  975. .timeline {
  976. position: relative;
  977. padding: 20px 0 20px;
  978. list-style: none;
  979. max-width: 1200px;
  980. margin: 0 auto;
  981. }
  982. .timeline:before {
  983. content: " ";
  984. position: absolute;
  985. top: 0;
  986. bottom: 0;
  987. left: 50%;
  988. width: 3px;
  989. margin-left: -1.5px;
  990. background-color: #eeeeee;
  991. }
  992. .timeline > li {
  993. position: relative;
  994. margin-bottom: 20px;
  995. }
  996. .timeline > li:before,
  997. .timeline > li:after {
  998. content: " ";
  999. display: table;
  1000. }
  1001. .timeline > li:after {
  1002. clear: both;
  1003. }
  1004. .timeline > li:before,
  1005. .timeline > li:after {
  1006. content: " ";
  1007. display: table;
  1008. }
  1009. .timeline > li:after {
  1010. clear: both;
  1011. }
  1012. .timeline > li > .timeline-panel {
  1013. float: left;
  1014. position: relative;
  1015. width: 46%;
  1016. padding: 20px;
  1017. border: 1px solid @border;
  1018. border-radius: @radius;
  1019. -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  1020. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  1021. }
  1022. .timeline > li > .timeline-panel:before {
  1023. content: " ";
  1024. display: inline-block;
  1025. position: absolute;
  1026. top: 26px;
  1027. right: -8px;
  1028. border-top: 8px solid transparent;
  1029. border-right: 0 solid @border;
  1030. border-bottom: 8px solid transparent;
  1031. border-left: 8px solid @border;
  1032. }
  1033. .timeline > li > .timeline-panel:after {
  1034. content: " ";
  1035. display: inline-block;
  1036. position: absolute;
  1037. top: 27px;
  1038. right: -7px;
  1039. border-top: 7px solid transparent;
  1040. border-right: 0 solid #fff;
  1041. border-bottom: 7px solid transparent;
  1042. border-left: 7px solid #fff;
  1043. }
  1044. .timeline > li > .timeline-badge {
  1045. z-index: 100;
  1046. position: absolute;
  1047. top: 16px;
  1048. left: 50%;
  1049. width: 50px;
  1050. height: 50px;
  1051. margin-left: -25px;
  1052. border-radius: 50% 50% 50% 50%;
  1053. text-align: center;
  1054. font-size: 1.4em;
  1055. line-height: 50px;
  1056. color: #fff;
  1057. overflow: hidden;
  1058. background-color: @inverse;
  1059. }
  1060. .timeline > li.timeline-inverted > .timeline-panel {
  1061. float: right;
  1062. }
  1063. .timeline > li.timeline-inverted > .timeline-panel:before {
  1064. right: auto;
  1065. left: -8px;
  1066. border-right-width: 8px;
  1067. border-left-width: 0;
  1068. }
  1069. .timeline > li.timeline-inverted > .timeline-panel:after {
  1070. right: auto;
  1071. left: -7px;
  1072. border-right-width: 7px;
  1073. border-left-width: 0;
  1074. }
  1075. .timeline-badge.primary {
  1076. background-color: @primary !important;
  1077. }
  1078. .timeline-badge.success {
  1079. background-color: @success !important;
  1080. }
  1081. .timeline-badge.warning {
  1082. background-color: @warning !important;
  1083. }
  1084. .timeline-badge.danger {
  1085. background-color: @danger !important;
  1086. }
  1087. .timeline-badge.info {
  1088. background-color: @info !important;
  1089. }
  1090. .timeline-title {
  1091. margin-top: 0;
  1092. color: inherit;
  1093. font-weight: 400;
  1094. }
  1095. .timeline-body > p,
  1096. .timeline-body > ul {
  1097. margin-bottom: 0;
  1098. }
  1099. .timeline-body > p + p {
  1100. margin-top: 5px;
  1101. }
  1102. /*Easy Pie charts*/
  1103. .chart {
  1104. position: relative;
  1105. display: inline-block;
  1106. width: 100px;
  1107. height: 100px;
  1108. margin-top: 20px;
  1109. margin-bottom: 20px;
  1110. text-align: center;
  1111. canvas {
  1112. position: absolute;
  1113. top: 0;
  1114. left: 0;
  1115. }
  1116. }
  1117. .chart.chart-widget-pie {
  1118. margin-top: 5px;
  1119. margin-bottom: 5px;
  1120. }
  1121. .pie-chart > span {
  1122. left: 0;
  1123. margin-top: -2px;
  1124. position: absolute;
  1125. right: 0;
  1126. text-align: center;
  1127. top: 50%;
  1128. transform: translateY(-50%);
  1129. }
  1130. .chart > span > img {
  1131. left: 0;
  1132. margin-top: -2px;
  1133. position: absolute;
  1134. right: 0;
  1135. text-align: center;
  1136. top: 50%;
  1137. width: 60%;
  1138. height: 60%;
  1139. transform: translateY(-50%);
  1140. margin: 0 auto;
  1141. }
  1142. .percent {
  1143. display: inline-block;
  1144. line-height: 100px;
  1145. z-index: 2;
  1146. font-weight: 600;
  1147. font-size: 18px;
  1148. color: @dark;
  1149. &:after {
  1150. content: '%';
  1151. margin-left: 0.1em;
  1152. font-size: .8em;
  1153. }
  1154. }
  1155. /*Tables*/
  1156. .table {
  1157. margin-bottom: 10px;
  1158. }
  1159. .table-striped>tbody>tr:nth-of-type(odd),
  1160. .table-hover > tbody > tr:hover,
  1161. .table > thead > tr > td.active,
  1162. .table > tbody > tr > td.active,
  1163. .table > tfoot > tr > td.active,
  1164. .table > thead > tr > th.active,
  1165. .table > tbody > tr > th.active,
  1166. .table > tfoot > tr > th.active,
  1167. .table > thead > tr.active > td,
  1168. .table > tbody > tr.active > td,
  1169. .table > tfoot > tr.active > td,
  1170. .table > thead > tr.active > th,
  1171. .table > tbody > tr.active > th,
  1172. .table > tfoot > tr.active > th {
  1173. background-color: @extralight !important;
  1174. }
  1175. .table > thead > tr > th,
  1176. .table > tbody > tr > th,
  1177. .table > tfoot > tr > th,
  1178. .table > thead > tr > td,
  1179. .table > tbody > tr > td,
  1180. .table > tfoot > tr > td,
  1181. .table > thead > tr > th,
  1182. .table-bordered {
  1183. border-top: 1px solid @light;
  1184. }
  1185. .table > tbody > tr > td,
  1186. .table > tbody > tr > th,
  1187. .table > tfoot > tr > td,
  1188. .table > tfoot > tr > th,
  1189. .table > thead > tr > td,
  1190. .table > thead > tr > th {
  1191. padding: 15px 8px;
  1192. }
  1193. .table-bordered > thead > tr > th,
  1194. .table-bordered > tbody > tr > th,
  1195. .table-bordered > tfoot > tr > th,
  1196. .table-bordered > thead > tr > td,
  1197. .table-bordered > tbody > tr > td,
  1198. .table-bordered > tfoot > tr > td {
  1199. border: 1px solid @light;
  1200. }
  1201. .table > thead > tr > th {
  1202. vertical-align: bottom;
  1203. border-bottom: 1px solid @light;
  1204. }
  1205. tbody {
  1206. color: #797979;
  1207. }
  1208. th {
  1209. color: #666666;
  1210. font-weight: 500;
  1211. }
  1212. .table-bordered {
  1213. border: 1px solid @light;
  1214. }
  1215. table.focus-on {
  1216. tbody {
  1217. tr.focused {
  1218. th {
  1219. background-color: @themecolor;
  1220. color: @white;
  1221. }
  1222. td {
  1223. background-color: @themecolor;
  1224. color: @white;
  1225. }
  1226. }
  1227. }
  1228. }
  1229. .table-rep-plugin {
  1230. .table-responsive {
  1231. border: none !important;
  1232. }
  1233. tbody {
  1234. th {
  1235. font-size: 14px;
  1236. font-weight: normal;
  1237. }
  1238. }
  1239. }
  1240. .jsgrid .jsgrid-table {
  1241. margin-bottom: 0px;
  1242. }
  1243. .jsgrid-selected-row>td {
  1244. background: @extralight;
  1245. border-color: @extralight;
  1246. }
  1247. .jsgrid-header-row>th {
  1248. background: @white;
  1249. }
  1250. .footable-odd {
  1251. background-color: @extralight;
  1252. }
  1253. /*Inputs*/
  1254. .form-control-line {
  1255. border-left: 0 none;
  1256. border-radius: 0;
  1257. border-right: 0 none;
  1258. border-top: 0 none;
  1259. box-shadow: none;
  1260. padding-left: 0;
  1261. }
  1262. .has-success {
  1263. .form-control {
  1264. border-color: @success;
  1265. box-shadow: none !important;
  1266. }
  1267. }
  1268. .has-warning {
  1269. .form-control {
  1270. border-color: @warning;
  1271. box-shadow: none !important;
  1272. }
  1273. }
  1274. .has-error {
  1275. .form-control {
  1276. border-color: @danger;
  1277. box-shadow: none !important;
  1278. }
  1279. }
  1280. .input-group-addon {
  1281. border-radius: 2px;
  1282. border: 1px solid @border;
  1283. }
  1284. .input-daterange input:first-child,
  1285. .input-daterange input:last-child {
  1286. border-radius: @radius;
  1287. }
  1288. /*Material inputs*/
  1289. .form-material .form-group {
  1290. overflow: hidden;
  1291. }
  1292. .form-material .form-control {
  1293. background-color: rgba(0, 0, 0, 0);
  1294. background-position: center bottom, center calc(100% - 1px);
  1295. background-repeat: no-repeat;
  1296. background-size: 0 2px, 100% 1px;
  1297. padding: 0;
  1298. transition: background 0s ease-out 0s;
  1299. }
  1300. .form-material .form-control,
  1301. .form-material .form-control.focus,
  1302. .form-material .form-control:focus {
  1303. background-image: linear-gradient(@purple, @purple), linear-gradient(@border, @border);
  1304. border: 0 none;
  1305. border-radius: 0;
  1306. box-shadow: none;
  1307. float: none;
  1308. }
  1309. .form-material .form-control.focus,
  1310. .form-material .form-control:focus {
  1311. background-size: 100% 2px, 100% 1px;
  1312. outline: 0 none;
  1313. transition-duration: 0.3s;
  1314. }
  1315. .form-bordered .form-group {
  1316. border-bottom: 1px solid @border;
  1317. padding-bottom: 20px;
  1318. }
  1319. /*Select 2*/
  1320. .select2-container {
  1321. .select2-choice {
  1322. background-image: none !important;
  1323. border: none !important;
  1324. height: auto !important;
  1325. padding: 0px !important;
  1326. line-height: 22px !important;
  1327. background-color: transparent !important;
  1328. box-shadow: none !important;
  1329. .select2-arrow {
  1330. background-image: none !important;
  1331. background: transparent;
  1332. border: none;
  1333. width: 14px;
  1334. top: -2px;
  1335. }
  1336. }
  1337. .select2-container-multi.form-control {
  1338. height: auto;
  1339. }
  1340. }
  1341. .select2-results .select2-highlighted {
  1342. color: #ffffff;
  1343. background-color: @info;
  1344. }
  1345. .select2-drop-active {
  1346. border: 1px solid #e3e3e3 !important;
  1347. padding-top: 5px;
  1348. }
  1349. .select2-search {
  1350. input {
  1351. border: 1px solid @border;
  1352. }
  1353. }
  1354. .select2-container-multi {
  1355. width: 100%;
  1356. .select2-choices {
  1357. border: 1px solid #border !important;
  1358. box-shadow: none !important;
  1359. background-image: none !important;
  1360. border-radius: @radius!important;
  1361. min-height: 38px;
  1362. .select2-search-choice {
  1363. padding: 4px 7px 4px 18px;
  1364. margin: 5px 0 3px 5px;
  1365. color: #555555;
  1366. background: #f5f5f5;
  1367. border-color: @border;
  1368. -webkit-box-shadow: none;
  1369. box-shadow: none;
  1370. }
  1371. .select2-search-field {
  1372. input {
  1373. padding: 7px 7px 7px 10px;
  1374. font-family: inherit;
  1375. }
  1376. }
  1377. }
  1378. }
  1379. /*Icons*/
  1380. .icon-list-demo {
  1381. div {
  1382. cursor: pointer;
  1383. line-height: 60px;
  1384. white-space: nowrap;
  1385. color: @bodytext;
  1386. &:hover {
  1387. color: @dark;
  1388. }
  1389. p {
  1390. margin: 10px 0;
  1391. padding: 5px 0;
  1392. }
  1393. }
  1394. i {
  1395. -webkit-transition: all 0.2s;
  1396. -webkit-transition: font-size .2s;
  1397. display: inline-block;
  1398. font-size: 18px;
  1399. margin: 0 15px 0 10px;
  1400. text-align: left;
  1401. transition: all 0.2s;
  1402. transition: font-size .2s;
  1403. vertical-align: middle;
  1404. width: auto;
  1405. transition: all 0.3s ease 0s;
  1406. }
  1407. .col-md-4 {
  1408. border-radius: @radius;
  1409. &:hover {
  1410. background-color: @extralight;
  1411. }
  1412. }
  1413. }
  1414. .icon-list-demo .col-md-4:hover i {
  1415. font-size: 2em;
  1416. }
  1417. /*Google map*/
  1418. .gmaps,
  1419. .gmaps-panaroma {
  1420. height: 300px;
  1421. }
  1422. .gmaps,
  1423. .gmaps-panaroma {
  1424. height: 300px;
  1425. background: @light;
  1426. border-radius: 3px;
  1427. }
  1428. .gmaps-overlay {
  1429. display: block;
  1430. text-align: center;
  1431. color: @white;
  1432. font-size: 16px;
  1433. line-height: 40px;
  1434. background: @primary;
  1435. border-radius: 4px;
  1436. padding: 10px 20px;
  1437. }
  1438. .gmaps-overlay_arrow {
  1439. left: 50%;
  1440. margin-left: -16px;
  1441. width: 0;
  1442. height: 0;
  1443. position: absolute;
  1444. }
  1445. .gmaps-overlay_arrow.above {
  1446. bottom: -15px;
  1447. border-left: 16px solid transparent;
  1448. border-right: 16px solid transparent;
  1449. border-top: 16px solid @primary;
  1450. }
  1451. .gmaps-overlay_arrow.below {
  1452. top: -15px;
  1453. border-left: 16px solid transparent;
  1454. border-right: 16px solid transparent;
  1455. border-bottom: 16px solid @primary;
  1456. }
  1457. .jvectormap-zoomin,
  1458. .jvectormap-zoomout {
  1459. width: 10px;
  1460. height: 10px;
  1461. line-height: 10px;
  1462. }
  1463. .jvectormap-zoomout {
  1464. top: 40px;
  1465. }
  1466. /*Error Page*/
  1467. .error-box {
  1468. height: 100%;
  1469. position: fixed;
  1470. top: 20%;
  1471. width: 100%;
  1472. .footer {
  1473. width: 100%;
  1474. left: 0px;
  1475. right: 0px;
  1476. }
  1477. }
  1478. .error-body {
  1479. padding-top: 5%;
  1480. h1 {
  1481. font-size: 210px;
  1482. font-weight: 900;
  1483. line-height: 210px;
  1484. }
  1485. }
  1486. /* Login- register pages */
  1487. .login-register {
  1488. background: url(../../plugins/images/login-register.jpg) no-repeat center center / cover !important;
  1489. height: 100%;
  1490. position: fixed;
  1491. }
  1492. .login-box {
  1493. background: @white;
  1494. width: 400px;
  1495. margin: 0 auto;
  1496. margin-top: 10%;
  1497. .footer {
  1498. width: 100%;
  1499. left: 0px;
  1500. right: 0px;
  1501. }
  1502. .social {
  1503. display: block;
  1504. margin-bottom: 30px;
  1505. }
  1506. }
  1507. #recoverform {
  1508. display: none;
  1509. }
  1510. .new-login-register {
  1511. position: fixed;
  1512. height: 100%;
  1513. .lg-info-panel {
  1514. background: url(../../plugins/images/login-register.jpg) no-repeat center center / cover !important;
  1515. width: 500px;
  1516. height: 100%;
  1517. position: fixed;
  1518. .inner-panel {
  1519. position: absolute;
  1520. height: 100%;
  1521. width: 100%;
  1522. background: rgba(0, 0, 0, 0.5);
  1523. }
  1524. .lg-content {
  1525. margin-top: 50%;
  1526. text-align: center;
  1527. padding: 0 50px;
  1528. h2 {
  1529. color: @white;
  1530. }
  1531. p {
  1532. padding: 20px 0;
  1533. color: rgba(255, 255, 255, 0.7);
  1534. font-style: italic;
  1535. }
  1536. }
  1537. }
  1538. .new-login-box {
  1539. margin-left: 50%;
  1540. margin-top: 10%;
  1541. width: 400px;
  1542. .new-lg-form {
  1543. padding-top: 20px;
  1544. label {
  1545. text-transform: uppercase;
  1546. font-size: 12px;
  1547. }
  1548. }
  1549. .social {
  1550. display: block;
  1551. margin-bottom: 30px;
  1552. }
  1553. }
  1554. }
  1555. /*Pricing*/
  1556. .pricing-box {
  1557. position: relative;
  1558. text-align: center;
  1559. margin-top: 30px;
  1560. }
  1561. .featured-plan {
  1562. margin-top: 0px;
  1563. .pricing-body {
  1564. padding: 60px 0;
  1565. background: @extralight;
  1566. border: 1px solid #ddd;
  1567. }
  1568. .price-table-content .price-row {
  1569. border-top: 1px solid rgba(120, 130, 140, 0.13);
  1570. }
  1571. }
  1572. .pricing-body {
  1573. border-radius: 0px;
  1574. border-top: 1px solid rgba(120, 130, 140, 0.13);
  1575. border-bottom: 5px solid rgba(120, 130, 140, 0.13);
  1576. vertical-align: middle;
  1577. padding: 30px 0;
  1578. position: relative;
  1579. }
  1580. .pricing-body h2 {
  1581. position: relative;
  1582. font-size: 56px;
  1583. margin: 20px 0 10px;
  1584. font-weight: 500;
  1585. span {
  1586. position: absolute;
  1587. font-size: 15px;
  1588. top: -10px;
  1589. margin-left: -10px
  1590. }
  1591. }
  1592. .price-table-content {
  1593. .price-row {
  1594. padding: 20px 0;
  1595. border-top: 1px solid rgba(120, 130, 140, 0.13);
  1596. }
  1597. }
  1598. .pricing-plan {
  1599. padding: 0 15px;
  1600. .no-padding {
  1601. padding: 0px;
  1602. }
  1603. }
  1604. .price-lable {
  1605. position: absolute;
  1606. top: -10px;
  1607. padding: 5px 10px;
  1608. margin: 0 auto;
  1609. display: inline-block;
  1610. width: 100px;
  1611. left: 0px;
  1612. right: 0px;
  1613. }
  1614. /*Inbox*/
  1615. .mails {
  1616. a {
  1617. color: @dark;
  1618. }
  1619. td {
  1620. vertical-align: middle !important;
  1621. position: relative;
  1622. &:last-of-type {
  1623. width: 100px;
  1624. padding-right: 20px;
  1625. }
  1626. }
  1627. tr {
  1628. &:hover {
  1629. .text-white {
  1630. display: none;
  1631. }
  1632. }
  1633. }
  1634. .mail-select {
  1635. padding: 12px 20px;
  1636. min-width: 134px;
  1637. }
  1638. .checkbox {
  1639. margin-bottom: 0px;
  1640. margin-top: 0px;
  1641. vertical-align: middle;
  1642. display: inline-block;
  1643. height: 17px;
  1644. label {
  1645. min-height: 16px;
  1646. }
  1647. }
  1648. }
  1649. .mail-list {
  1650. .list-group-item {
  1651. background-color: transparent;
  1652. border: 0px;
  1653. border-left: 3px solid @white;
  1654. border-radius: 0px;
  1655. &:hover {
  1656. background: @extralight;
  1657. border-left: 3px solid @extralight;
  1658. }
  1659. &:focus {
  1660. border-left: 3px solid @extralight;
  1661. }
  1662. &.active:focus {
  1663. background: @extralight;
  1664. border-left: 3px solid @danger;
  1665. }
  1666. }
  1667. .list-group-item.active {
  1668. border-left: 3px solid @danger;
  1669. border-radius: 0px;
  1670. color: @dark !important;
  1671. }
  1672. }
  1673. .mail_listing {
  1674. min-height: 500px;
  1675. }
  1676. .inbox_listing .inbox-item:hover {
  1677. background: @extralight;
  1678. }
  1679. .inbox_listing .inbox-item {
  1680. padding-left: 20px;
  1681. }
  1682. .inbox-widget.inbox_listing .inbox-item .inbox-item-text {
  1683. height: 19px;
  1684. overflow: hidden;
  1685. }
  1686. .message-center .unread .mail-contnet {
  1687. h5,
  1688. .mail-desc {
  1689. font-weight: 600;
  1690. color: @dark!important;
  1691. }
  1692. }
  1693. /*Calendar*/
  1694. .calendar {
  1695. float: left;
  1696. margin-bottom: 0px;
  1697. }
  1698. .fc-view {
  1699. margin-top: 30px;
  1700. }
  1701. .none-border {
  1702. .modal-footer {
  1703. border-top: none;
  1704. }
  1705. }
  1706. .fc-toolbar {
  1707. margin-bottom: 5px;
  1708. margin-top: 15px;
  1709. h2 {
  1710. font-size: 18px;
  1711. font-weight: 600;
  1712. line-height: 30px;
  1713. text-transform: uppercase;
  1714. }
  1715. }
  1716. .fc-day {
  1717. background: @white;
  1718. }
  1719. .fc-toolbar .fc-state-active,
  1720. .fc-toolbar .ui-state-active,
  1721. .fc-toolbar button:focus,
  1722. .fc-toolbar button:hover,
  1723. .fc-toolbar .ui-state-hover {
  1724. z-index: 0;
  1725. }
  1726. .fc-widget-header {
  1727. border: 0px !important;
  1728. }
  1729. .fc-widget-content {
  1730. border-color: rgba(120, 130, 140, 0.13)!important;
  1731. }
  1732. .fc {
  1733. th.fc-widget-header {
  1734. color: @white;
  1735. font-size: 14px;
  1736. line-height: 20px;
  1737. padding: 7px 0px;
  1738. text-transform: uppercase;
  1739. }
  1740. th.fc-sun,
  1741. th.fc-tue,
  1742. th.fc-thu,
  1743. th.fc-sat {
  1744. background: #34b6ef;
  1745. }
  1746. th.fc-mon,
  1747. th.fc-wed,
  1748. th.fc-fri {
  1749. background: #3bbcf5;
  1750. }
  1751. }
  1752. .fc-view {
  1753. margin-top: 0px;
  1754. }
  1755. .fc-toolbar {
  1756. background: @info;
  1757. margin: 0px;
  1758. padding: 24px 20px;
  1759. h2 {
  1760. color: @white;
  1761. }
  1762. }
  1763. .fc-button {
  1764. background: #3bbcf5;
  1765. border: 1px solid @info;
  1766. color: #fff;
  1767. text-transform: capitalize;
  1768. &:hover {
  1769. background: #3bbcf5;
  1770. opacity: 0.8;
  1771. }
  1772. }
  1773. .fc-text-arrow {
  1774. font-family: inherit;
  1775. font-size: 16px;
  1776. }
  1777. .fc-state-hover {
  1778. background: #F5F5F5;
  1779. }
  1780. .fc-unthemed .fc-today {
  1781. border: 1px solid @danger;
  1782. background: @extralight!important;
  1783. }
  1784. .fc-state-highlight {
  1785. background: #f0f0f0;
  1786. }
  1787. .fc-cell-overlay {
  1788. background: #f0f0f0;
  1789. }
  1790. .fc-unthemed {
  1791. .fc-today {
  1792. background: @white;
  1793. }
  1794. }
  1795. .fc-event {
  1796. border-radius: 0px;
  1797. border: none;
  1798. cursor: move;
  1799. font-size: 13px;
  1800. margin: 1px -1px 0 -1px;
  1801. padding: 5px 5px;
  1802. text-align: center;
  1803. background: @info;
  1804. }
  1805. .calendar-event {
  1806. cursor: move;
  1807. margin: 10px 5px 0 0;
  1808. padding: 6px 10px;
  1809. display: inline-block;
  1810. color: @white;
  1811. min-width: 140px;
  1812. text-align: center;
  1813. background: @info;
  1814. a {
  1815. float: right;
  1816. opacity: 0.6;
  1817. font-size: 10px;
  1818. margin: 4px 0 0 10px;
  1819. color: @white;
  1820. }
  1821. }
  1822. .fc-basic-view {
  1823. td.fc-week-number {
  1824. span {
  1825. padding-right: 5px;
  1826. }
  1827. }
  1828. .fc-day-number {
  1829. padding: 10px 15px;
  1830. display: inline-block;
  1831. }
  1832. }
  1833. /*Weather small widget*/
  1834. .weather {
  1835. h1 {
  1836. color: @white;
  1837. font-size: 50px;
  1838. font-weight: 100;
  1839. }
  1840. i {
  1841. color: @white;
  1842. font-size: 40px;
  1843. }
  1844. .w-title-sub {
  1845. color: rgba(255, 255, 255, 0.6);
  1846. }
  1847. }
  1848. /*Right sidebar*/
  1849. @-webkit-keyframes rotate {
  1850. from {
  1851. -webkit-transform: rotate(0deg);
  1852. }
  1853. to {
  1854. -webkit-transform: rotate(360deg);
  1855. }
  1856. }
  1857. @-moz-keyframes rotate {
  1858. from {
  1859. -moz-transform: rotate(0deg);
  1860. }
  1861. to {
  1862. -moz-transform: rotate(360deg);
  1863. }
  1864. }
  1865. @keyframes rotate {
  1866. from {
  1867. transform: rotate(0deg);
  1868. }
  1869. to {
  1870. transform: rotate(360deg);
  1871. }
  1872. }
  1873. .right-side-toggle {
  1874. position: relative;
  1875. i {
  1876. -webkit-transition-property: -webkit-transform;
  1877. -webkit-transition-duration: 1s;
  1878. -moz-transition-property: -moz-transform;
  1879. -moz-transition-duration: 1s;
  1880. transition-property: transform;
  1881. transition-duration: 1s;
  1882. -webkit-animation-name: rotate;
  1883. -webkit-animation-duration: 2s;
  1884. -webkit-animation-iteration-count: infinite;
  1885. -webkit-animation-timing-function: linear;
  1886. -moz-animation-name: rotate;
  1887. -moz-animation-duration: 2s;
  1888. -moz-animation-iteration-count: infinite;
  1889. -moz-animation-timing-function: linear;
  1890. animation-name: rotate;
  1891. animation-duration: 2s;
  1892. animation-iteration-count: infinite;
  1893. animation-timing-function: linear;
  1894. position: absolute;
  1895. top: 7px;
  1896. left: 8px;
  1897. }
  1898. }
  1899. .right-sidebar {
  1900. position: fixed;
  1901. right: -240px;
  1902. width: 240px;
  1903. display: none;
  1904. z-index: 1000;
  1905. background: @white;
  1906. top: 0px;
  1907. height: 100%;
  1908. box-shadow: 5px 1px 40px rgba(0, 0, 0, 0.1);
  1909. transition: all 0.3s ease;
  1910. .rpanel-title {
  1911. display: block;
  1912. padding: 21px;
  1913. color: #fff;
  1914. text-transform: uppercase;
  1915. font-size: 13px;
  1916. background: @themecolor;
  1917. span {
  1918. float: right;
  1919. cursor: pointer;
  1920. font-size: 11px;
  1921. &:hover {
  1922. color: @dark;
  1923. }
  1924. }
  1925. }
  1926. .r-panel-body {
  1927. padding: 20px;
  1928. ul {
  1929. margin: 0px;
  1930. padding: 0px;
  1931. li {
  1932. list-style: none;
  1933. padding: 5px 0;
  1934. }
  1935. }
  1936. }
  1937. }
  1938. .shw-rside {
  1939. right: 0px;
  1940. width: 240px;
  1941. display: block;
  1942. }
  1943. /*Chat online*/
  1944. .chatonline {
  1945. img {
  1946. margin-right: 10px;
  1947. float: left;
  1948. width: 30px;
  1949. }
  1950. li a {
  1951. padding: 13px 0;
  1952. float: left;
  1953. width: 100%;
  1954. span {
  1955. color: @bodytext;
  1956. small {
  1957. display: block;
  1958. font-size: 10px;
  1959. }
  1960. }
  1961. }
  1962. }
  1963. /*Style switcher*/
  1964. ul#themecolors {
  1965. display: block;
  1966. li {
  1967. display: inline-block;
  1968. &:first-child {
  1969. display: block;
  1970. }
  1971. }
  1972. }
  1973. #themecolors li a {
  1974. width: 50px;
  1975. height: 50px;
  1976. display: inline-block;
  1977. margin: 5px;
  1978. color: transparent;
  1979. position: relative;
  1980. }
  1981. #themecolors li a.working:before {
  1982. content: "\f00c";
  1983. font-family: "FontAwesome";
  1984. font-size: 18px;
  1985. line-height: 50px;
  1986. width: 50px;
  1987. height: 50px;
  1988. position: absolute;
  1989. top: 0;
  1990. left: 0;
  1991. color: #fff;
  1992. text-align: center;
  1993. }
  1994. .default-theme {
  1995. background: @inverse;
  1996. }
  1997. .green-theme {
  1998. background: @success;
  1999. }
  2000. .yellow-theme {
  2001. background: #a0aec4;
  2002. }
  2003. .blue-theme {
  2004. background: @info;
  2005. }
  2006. .purple-theme {
  2007. background: @purple;
  2008. }
  2009. .megna-theme {
  2010. background: @light;
  2011. }
  2012. .default-dark-theme {
  2013. background: #4f5467;
  2014. /* Old browsers */
  2015. background: -moz-linear-gradient(left, #4f5467 0%, #4f5467 23%, @danger 23%, @danger 99%);
  2016. /* FF3.6-15 */
  2017. background: -webkit-linear-gradient(left, #4f5467 0%, #4f5467 23%, @danger 23%, @danger 99%);
  2018. /* Chrome10-25,Safari5.1-6 */
  2019. background: linear-gradient(to right, #4f5467 0%, #4f5467 23%, @danger 23%, @danger 99%);
  2020. }
  2021. .green-dark-theme {
  2022. background: #4f5467;
  2023. /* Old browsers */
  2024. background: -moz-linear-gradient(left, #4f5467 0%, #4f5467 23%, #00c292 23%, #00c292 99%);
  2025. /* FF3.6-15 */
  2026. background: -webkit-linear-gradient(left, #4f5467 0%, #4f5467 23%, #00c292 23%, #00c292 99%);
  2027. /* Chrome10-25,Safari5.1-6 */
  2028. background: linear-gradient(to right, #4f5467 0%, #4f5467 23%, #00c292 23%, #00c292 99%);
  2029. }
  2030. .yellow-dark-theme {
  2031. background: #4f5467;
  2032. /* Old browsers */
  2033. background: -moz-linear-gradient(left, #4f5467 0%, #4f5467 23%, #a0aec4 23%, #a0aec4 99%);
  2034. /* FF3.6-15 */
  2035. background: -webkit-linear-gradient(left, #4f5467 0%, #4f5467 23%, #a0aec4 23%, #a0aec4 99%);
  2036. /* Chrome10-25,Safari5.1-6 */
  2037. background: linear-gradient(to right, #4f5467 0%, #4f5467 23%, #a0aec4 23%, #a0aec4 99%);
  2038. }
  2039. .blue-dark-theme {
  2040. background: #4f5467;
  2041. /* Old browsers */
  2042. background: -moz-linear-gradient(left, #4f5467 0%, #4f5467 23%, @info 23%, @info 99%);
  2043. /* FF3.6-15 */
  2044. background: -webkit-linear-gradient(left, #4f5467 0%, #4f5467 23%, @info 23%, @info 99%);
  2045. /* Chrome10-25,Safari5.1-6 */
  2046. background: linear-gradient(to right, #4f5467 0%, #4f5467 23%, @info 23%, @info 99%);
  2047. }
  2048. .purple-dark-theme {
  2049. background: #4f5467;
  2050. /* Old browsers */
  2051. background: -moz-linear-gradient(left, #4f5467 0%, #4f5467 23%, @purple 23%, @purple 99%);
  2052. /* FF3.6-15 */
  2053. background: -webkit-linear-gradient(left, #4f5467 0%, #4f5467 23%, @purple 23%, @purple 99%);
  2054. /* Chrome10-25,Safari5.1-6 */
  2055. background: linear-gradient(to right, #4f5467 0%, #4f5467 23%, @purple 23%, @purple 99%);
  2056. }
  2057. .megna-dark-theme {
  2058. background: #4f5467;
  2059. /* Old browsers */
  2060. background: -moz-linear-gradient(left, #4f5467 0%, #4f5467 23%, @light 23%, @light 99%);
  2061. /* FF3.6-15 */
  2062. background: -webkit-linear-gradient(left, #4f5467 0%, #4f5467 23%, @light 23%, @light 99%);
  2063. /* Chrome10-25,Safari5.1-6 */
  2064. background: linear-gradient(to right, #4f5467 0%, #4f5467 23%, @light 23%, @light 99%);
  2065. }
  2066. .red-dark-theme {
  2067. background: #e20b0b;
  2068. /* Old browsers */
  2069. background: -moz-linear-gradient(left, #4f5467 0%, #4f5467 23%, #e20b0b 23%, #e20b0b 99%);
  2070. /* FF3.6-15 */
  2071. background: -webkit-linear-gradient(left, #4f5467 0%, #4f5467 23%, #e20b0b 23%, #e20b0b 99%);
  2072. /* Chrome10-25,Safari5.1-6 */
  2073. background: linear-gradient(to right, #4f5467 0%, #4f5467 23%, #e20b0b 23%, #e20b0b 99%);
  2074. }
  2075. /*visited ul li*/
  2076. .visited li a {
  2077. color: @bodytext
  2078. }
  2079. .visited li.active a {
  2080. color: @themecolor;
  2081. }
  2082. /*Stats Row*/
  2083. .stats-row {
  2084. margin-bottom: 20px;
  2085. }
  2086. .stat-item {
  2087. display: inline-block;
  2088. padding-right: 15px;
  2089. }
  2090. .stat-item+.stat-item {
  2091. padding-left: 15px;
  2092. border-left: 1px solid #eee;
  2093. }
  2094. /*country-state*/
  2095. .country-state {
  2096. list-style: none;
  2097. margin: 0px;
  2098. padding: 0px 0 0 10px;
  2099. h2 {
  2100. margin: 0px;
  2101. }
  2102. .progress {
  2103. margin-top: 8px;
  2104. }
  2105. }
  2106. /*Two part*/
  2107. .two-part li {
  2108. width: 48.8%;
  2109. i {
  2110. font-size: 50px;
  2111. }
  2112. span {
  2113. font-size: 50px;
  2114. font-weight: 100;
  2115. font-family: @basefont2;
  2116. }
  2117. }
  2118. /*News Slides*/
  2119. .news-slide {
  2120. position: relative;
  2121. .overlaybg {
  2122. height: 370px;
  2123. overflow: hidden;
  2124. img {
  2125. width: 100%;
  2126. height: 100%;
  2127. }
  2128. }
  2129. .news-content {
  2130. position: absolute;
  2131. height: 370px;
  2132. background: rgba(0, 0, 0, 0.5);
  2133. z-index: 10;
  2134. width: 100%;
  2135. top: 0px;
  2136. padding: 30px;
  2137. h2 {
  2138. height: 240px;
  2139. overflow: hidden;
  2140. color: @white;
  2141. }
  2142. a {
  2143. color: @white;
  2144. opacity: 0.6;
  2145. text-transform: uppercase;
  2146. &:hover {
  2147. opacity: 1;
  2148. }
  2149. }
  2150. }
  2151. }
  2152. .dashboard-slide {
  2153. .overlaybg {
  2154. height: 435px;
  2155. }
  2156. .news-content {
  2157. height: 435px;
  2158. h2 {
  2159. height: 320px;
  2160. }
  2161. }
  2162. }
  2163. /*Nav pill rounded*/
  2164. .nav-pills-rounded li {
  2165. display: inline-block;
  2166. float: none;
  2167. }
  2168. .nav-pills-rounded li a {
  2169. border-radius: 60px;
  2170. -moz-border-radius: 60px;
  2171. -webkit-border-radius: 60px;
  2172. color: @bodytext;
  2173. padding: 10px 25px;
  2174. }
  2175. .nav-pills-rounded li.active a,
  2176. .nav-pills-rounded li.active a:focus,
  2177. .nav-pills-rounded li.active a:hover {
  2178. background: @themecolor;
  2179. color: @white;
  2180. }
  2181. /*analytics-info*/
  2182. .analytics-info .list-inline {
  2183. margin-bottom: 0px;
  2184. li {
  2185. vertical-align: middle;
  2186. span {
  2187. font-size: 24px;
  2188. }
  2189. i {
  2190. font-size: 20px;
  2191. }
  2192. }
  2193. }
  2194. /*Feeds*/
  2195. .feeds {
  2196. margin: 0px;
  2197. padding: 0px;
  2198. li {
  2199. list-style: none;
  2200. padding: 10px;
  2201. display: block;
  2202. &:hover {
  2203. background: @extralight;
  2204. }
  2205. > div {
  2206. width: 40px;
  2207. height: 40px;
  2208. margin-right: 5px;
  2209. display: inline-block;
  2210. text-align: center;
  2211. vertical-align: middle;
  2212. border-radius: 100%;
  2213. i {
  2214. line-height: 40px;
  2215. }
  2216. }
  2217. span {
  2218. float: right;
  2219. width: auto;
  2220. font-size: 12px;
  2221. }
  2222. }
  2223. }
  2224. /*Jquery toaster*/
  2225. .jq-icon-info {
  2226. background-color: @info;
  2227. color: @white;
  2228. }
  2229. .jq-icon-success {
  2230. background-color: @success;
  2231. color: @white;
  2232. }
  2233. .jq-icon-error {
  2234. background-color: @danger;
  2235. color: @white;
  2236. }
  2237. .jq-icon-warning {
  2238. background-color: @warning;
  2239. color: @white;
  2240. }
  2241. /*Dropzone*/
  2242. .dropzone {
  2243. border-style: dashed;
  2244. border-width: 1px;
  2245. }
  2246. /*sales boxes*/
  2247. .weather h1 sup {
  2248. font-size: 20px;
  2249. top: -1.2em;
  2250. }
  2251. /* Button 1c */
  2252. .fcbtn {
  2253. position: relative;
  2254. -webkit-transition: all 0.3s;
  2255. -moz-transition: all 0.3s;
  2256. transition: all 0.3s;
  2257. padding: 8px 20px;
  2258. }
  2259. .fcbtn:after {
  2260. content: '';
  2261. position: absolute;
  2262. z-index: -1;
  2263. -webkit-transition: all 0.3s;
  2264. -moz-transition: all 0.3s;
  2265. transition: all 0.3s;
  2266. }
  2267. /* Button 1b */
  2268. .btn-1b {
  2269. &:after {
  2270. width: 100%;
  2271. height: 0;
  2272. top: 0;
  2273. left: 0;
  2274. }
  2275. &:hover,
  2276. &:active {
  2277. color: #fff;
  2278. }
  2279. &:hover:after,
  2280. &:active:after {
  2281. height: 100%;
  2282. }
  2283. }
  2284. .btn-1b.btn-info:after,
  2285. .btn-1c.btn-info:after,
  2286. .btn-1d.btn-info:after,
  2287. .btn-1e.btn-info:after,
  2288. .btn-1f.btn-info:after {
  2289. background: @info;
  2290. }
  2291. .btn-1b.btn-warning:after,
  2292. .btn-1c.btn-warning:after,
  2293. .btn-1d.btn-warning:after,
  2294. .btn-1e.btn-warning:after,
  2295. .btn-1f.btn-warning:after {
  2296. background: @warning;
  2297. }
  2298. .btn-1b.btn-danger:after,
  2299. .btn-1c.btn-danger:after,
  2300. .btn-1d.btn-danger:after,
  2301. .btn-1e.btn-danger:after,
  2302. .btn-1f.btn-danger:after {
  2303. background: @danger;
  2304. }
  2305. .btn-1b.btn-primary:after,
  2306. .btn-1c.btn-primary:after,
  2307. .btn-1d.btn-primary:after,
  2308. .btn-1e.btn-primary:after,
  2309. .btn-1f.btn-primary:after {
  2310. background: @purple;
  2311. }
  2312. .btn-1b.btn-success:after,
  2313. .btn-1c.btn-success:after,
  2314. .btn-1d.btn-success:after,
  2315. .btn-1e.btn-success:after,
  2316. .btn-1f.btn-success:after {
  2317. background: @success;
  2318. }
  2319. .btn-1b.btn-inverse:after,
  2320. .btn-1c.btn-inverse:after,
  2321. .btn-1d.btn-inverse:after,
  2322. .btn-1e.btn-inverse:after,
  2323. .btn-1f.btn-inverse:after {
  2324. background: @inverse;
  2325. }
  2326. /* Button 1c */
  2327. .btn-1c {
  2328. &:after {
  2329. width: 0%;
  2330. height: 100%;
  2331. top: 0;
  2332. left: 0;
  2333. }
  2334. &:hover,
  2335. &:active {
  2336. color: #000;
  2337. }
  2338. &:hover:after,
  2339. &:active:after {
  2340. width: 100%;
  2341. }
  2342. }
  2343. /* Button 1d */
  2344. .btn-1d {
  2345. overflow: hidden;
  2346. &:after {
  2347. width: 0;
  2348. height: 103%;
  2349. top: 50%;
  2350. left: 50%;
  2351. opacity: 0;
  2352. -webkit-transform: translateX(-50%) translateY(-50%);
  2353. -moz-transform: translateX(-50%) translateY(-50%);
  2354. -ms-transform: translateX(-50%) translateY(-50%);
  2355. transform: translateX(-50%) translateY(-50%);
  2356. }
  2357. &:hover:after {
  2358. width: 100%;
  2359. opacity: 1;
  2360. }
  2361. }
  2362. /* Button 1e */
  2363. .btn-1e {
  2364. overflow: hidden;
  2365. &:after {
  2366. width: 100%;
  2367. height: 0;
  2368. top: 50%;
  2369. left: 50%;
  2370. background: #fff;
  2371. opacity: 0;
  2372. -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  2373. -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  2374. -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  2375. transform: translateX(-50%) translateY(-50%) rotate(45deg);
  2376. }
  2377. &:hover:after {
  2378. height: 260%;
  2379. opacity: 1;
  2380. }
  2381. &:active:after {
  2382. height: 400%;
  2383. opacity: 1;
  2384. }
  2385. }
  2386. /* Button 1f */
  2387. .btn-1f {
  2388. overflow: hidden;
  2389. &:after {
  2390. width: 101%;
  2391. height: 0;
  2392. top: 50%;
  2393. left: 50%;
  2394. background: #fff;
  2395. opacity: 0;
  2396. -webkit-transform: translateX(-50%) translateY(-50%);
  2397. -moz-transform: translateX(-50%) translateY(-50%);
  2398. -ms-transform: translateX(-50%) translateY(-50%);
  2399. transform: translateX(-50%) translateY(-50%);
  2400. }
  2401. &:hover:after {
  2402. height: 100%;
  2403. opacity: 1;
  2404. }
  2405. &:active:after {
  2406. height: 130%;
  2407. opacity: 1;
  2408. }
  2409. }
  2410. /*sweat Aleart*/
  2411. .sweet-alert {
  2412. padding: 25px;
  2413. h2 {
  2414. margin-top: 0px;
  2415. }
  2416. p {
  2417. line-height: 30px;
  2418. }
  2419. }
  2420. /*List icon*/
  2421. ul.list-icons {
  2422. margin: 0px;
  2423. padding: 0px;
  2424. li {
  2425. list-style: none;
  2426. line-height: 40px;
  2427. i {
  2428. font-size: 12px;
  2429. margin-right: 5px;
  2430. }
  2431. }
  2432. }
  2433. /*Tooltip*/
  2434. .demo-tooltip .tooltip,
  2435. .demo-popover .popover {
  2436. position: relative;
  2437. margin-right: 25px;
  2438. opacity: 1;
  2439. display: inline-block;
  2440. }
  2441. .tooltip-inner {
  2442. border-radius: 3px;
  2443. padding: 5px 10px;
  2444. }
  2445. .tooltip.in {
  2446. opacity: 1;
  2447. }
  2448. .tooltip-primary.tooltip .tooltip-inner,
  2449. .tooltip-primary + .tooltip .tooltip-inner {
  2450. color: #ffffff;
  2451. background-color: @primary;
  2452. }
  2453. .tooltip-primary.tooltip.top .tooltip-arrow,
  2454. .tooltip-primary + .tooltip.top .tooltip-arrow {
  2455. border-top-color: @primary;
  2456. }
  2457. .tooltip-primary.tooltip.right .tooltip-arrow,
  2458. .tooltip-primary + .tooltip.right .tooltip-arrow {
  2459. border-right-color: @primary;
  2460. }
  2461. .tooltip-primary.tooltip.bottom .tooltip-arrow,
  2462. .tooltip-primary + .tooltip.bottom .tooltip-arrow {
  2463. border-bottom-color: @primary;
  2464. }
  2465. .tooltip-primary.tooltip.left .tooltip-arrow,
  2466. .tooltip-primary + .tooltip.left .tooltip-arrow {
  2467. border-left-color: @primary;
  2468. }
  2469. .tooltip-success.tooltip .tooltip-inner,
  2470. .tooltip-success + .tooltip .tooltip-inner {
  2471. color: #ffffff;
  2472. background-color: @success;
  2473. }
  2474. .tooltip-success.tooltip.top .tooltip-arrow,
  2475. .tooltip-success + .tooltip.top .tooltip-arrow {
  2476. border-top-color: @success;
  2477. }
  2478. .tooltip-success.tooltip.right .tooltip-arrow,
  2479. .tooltip-success + .tooltip.right .tooltip-arrow {
  2480. border-right-color: @success;
  2481. }
  2482. .tooltip-success.tooltip.bottom .tooltip-arrow,
  2483. .tooltip-success + .tooltip.bottom .tooltip-arrow {
  2484. border-bottom-color: @success;
  2485. }
  2486. .tooltip-success.tooltip.left .tooltip-arrow,
  2487. .tooltip-success + .tooltip.left .tooltip-arrow {
  2488. border-left-color: @success;
  2489. }
  2490. .tooltip-warning.tooltip .tooltip-inner,
  2491. .tooltip-warning + .tooltip .tooltip-inner {
  2492. color: #ffffff;
  2493. background-color: @warning;
  2494. }
  2495. .tooltip-warning.tooltip.top .tooltip-arrow,
  2496. .tooltip-warning + .tooltip.top .tooltip-arrow {
  2497. border-top-color: @warning;
  2498. }
  2499. .tooltip-warning.tooltip.right .tooltip-arrow,
  2500. .tooltip-warning + .tooltip.right .tooltip-arrow {
  2501. border-right-color: @warning;
  2502. }
  2503. .tooltip-warning.tooltip.bottom .tooltip-arrow,
  2504. .tooltip-warning + .tooltip.bottom .tooltip-arrow {
  2505. border-bottom-color: @warning;
  2506. }
  2507. .tooltip-warning.tooltip.left .tooltip-arrow,
  2508. .tooltip-warning + .tooltip.left .tooltip-arrow {
  2509. border-left-color: @warning;
  2510. }
  2511. .tooltip-info.tooltip .tooltip-inner,
  2512. .tooltip-info + .tooltip .tooltip-inner {
  2513. color: #ffffff;
  2514. background-color: @info;
  2515. }
  2516. .tooltip-info.tooltip.top .tooltip-arrow,
  2517. .tooltip-info + .tooltip.top .tooltip-arrow {
  2518. border-top-color: @info;
  2519. }
  2520. .tooltip-info.tooltip.right .tooltip-arrow,
  2521. .tooltip-info + .tooltip.right .tooltip-arrow {
  2522. border-right-color: @info;
  2523. }
  2524. .tooltip-info.tooltip.bottom .tooltip-arrow,
  2525. .tooltip-info + tooltip.bottom .tooltip-arrow {
  2526. border-bottom-color: @info;
  2527. }
  2528. .tooltip-info.tooltip.left .tooltip-arrow,
  2529. .tooltip-info + .tooltip.left .tooltip-arrow {
  2530. border-left-color: @info;
  2531. }
  2532. .tooltip-danger.tooltip .tooltip-inner,
  2533. .tooltip-danger + .tooltip .tooltip-inner {
  2534. color: #ffffff;
  2535. background-color: @danger;
  2536. }
  2537. .tooltip-danger.tooltip.top .tooltip-arrow,
  2538. .tooltip-danger + .tooltip.top .tooltip-arrow {
  2539. border-top-color: @danger;
  2540. }
  2541. .tooltip-danger.tooltip.right .tooltip-arrow,
  2542. .tooltip-danger + .tooltip.right .tooltip-arrow {
  2543. border-right-color: @danger;
  2544. }
  2545. .tooltip-danger.tooltip.bottom .tooltip-arrow,
  2546. .tooltip-danger + .tooltip.bottom .tooltip-arrow {
  2547. border-bottom-color: @danger;
  2548. }
  2549. .tooltip-danger.tooltip.left .tooltip-arrow,
  2550. .tooltip-danger + .tooltip.left .tooltip-arrow {
  2551. border-left-color: @danger;
  2552. }
  2553. .flotTip {
  2554. padding: 8px 12px;
  2555. background-color: @dark;
  2556. z-index: 100;
  2557. color: #ffffff;
  2558. opacity: 0.9;
  2559. font-size: 13px;
  2560. }
  2561. /*Popover*/
  2562. .popover {
  2563. -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  2564. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  2565. }
  2566. .popover .popover-title {
  2567. border-radius: 0px;
  2568. }
  2569. .popover-primary + .popover .popover-title {
  2570. color: @white;
  2571. background-color: @primary;
  2572. border-color: @primary;
  2573. }
  2574. .popover-primary + .popover.bottom .arrow {
  2575. border-bottom-color: @primary;
  2576. }
  2577. .popover-primary + .popover.bottom .arrow:after {
  2578. border-bottom-color: @primary;
  2579. }
  2580. .popover-success + .popover .popover-title {
  2581. color: @white;
  2582. background-color: @success;
  2583. border-color: @success;
  2584. }
  2585. .popover-success + .popover.bottom .arrow {
  2586. border-bottom-color: @success;
  2587. }
  2588. .popover-success + .popover.bottom .arrow:after {
  2589. border-bottom-color: @success;
  2590. }
  2591. .popover-info + .popover .popover-title {
  2592. color: @white;
  2593. background-color: @info;
  2594. border-color: @info;
  2595. }
  2596. .popover-info + .popover.bottom .arrow {
  2597. border-bottom-color: @info;
  2598. }
  2599. .popover-info + .popover.bottom .arrow:after {
  2600. border-bottom-color: @info;
  2601. }
  2602. .popover-warning + .popover .popover-title {
  2603. color: @white;
  2604. background-color: @warning;
  2605. border-color: @warning;
  2606. }
  2607. .popover-warning + .popover.bottom .arrow {
  2608. border-bottom-color: @warning;
  2609. }
  2610. .popover-warning + .popover.bottom .arrow:after {
  2611. border-bottom-color: @warning;
  2612. }
  2613. .popover-danger + .popover .popover-title {
  2614. color: @white;
  2615. background-color: @danger;
  2616. border-color: @danger;
  2617. }
  2618. .popover-danger + .popover.bottom .arrow {
  2619. border-bottom-color: @danger;
  2620. }
  2621. .popover-danger + .popover.bottom .arrow:after {
  2622. border-bottom-color: @danger;
  2623. }
  2624. /*File Upload*/
  2625. .btn-file {
  2626. overflow: hidden;
  2627. position: relative;
  2628. vertical-align: middle;
  2629. }
  2630. .btn-file > input {
  2631. position: absolute;
  2632. top: 0;
  2633. right: 0;
  2634. margin: 0;
  2635. opacity: 0;
  2636. filter: alpha(opacity=0);
  2637. font-size: 23px;
  2638. height: 100%;
  2639. width: 100%;
  2640. direction: ltr;
  2641. cursor: pointer;
  2642. border-radius: 0px;
  2643. }
  2644. .fileinput {
  2645. margin-bottom: 9px;
  2646. display: inline-block;
  2647. }
  2648. .fileinput .form-control {
  2649. padding-top: 7px;
  2650. padding-bottom: 5px;
  2651. display: inline-block;
  2652. margin-bottom: 0px;
  2653. vertical-align: middle;
  2654. cursor: text;
  2655. }
  2656. .fileinput .thumbnail {
  2657. overflow: hidden;
  2658. display: inline-block;
  2659. margin-bottom: 5px;
  2660. vertical-align: middle;
  2661. text-align: center;
  2662. }
  2663. .fileinput .thumbnail > img {
  2664. max-height: 100%;
  2665. }
  2666. .fileinput .btn {
  2667. vertical-align: middle;
  2668. }
  2669. .fileinput-exists .fileinput-new,
  2670. .fileinput-new .fileinput-exists {
  2671. display: none;
  2672. }
  2673. .fileinput-inline .fileinput-controls {
  2674. display: inline;
  2675. }
  2676. .fileinput-filename {
  2677. vertical-align: middle;
  2678. display: inline-block;
  2679. overflow: hidden;
  2680. }
  2681. .form-control .fileinput-filename {
  2682. vertical-align: bottom;
  2683. }
  2684. .fileinput.input-group {
  2685. display: table;
  2686. }
  2687. .fileinput.input-group > * {
  2688. position: relative;
  2689. z-index: 2;
  2690. }
  2691. .fileinput.input-group > .btn-file {
  2692. z-index: 1;
  2693. }
  2694. /*Bootstrap select*/
  2695. .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  2696. width: 100%;
  2697. }
  2698. .ms-container .ms-list {
  2699. border-radius: @radius;
  2700. box-shadow: none;
  2701. }
  2702. .ms-container .ms-selectable li.ms-elem-selectable,
  2703. .ms-container .ms-selection li.ms-elem-selection {
  2704. padding: 6px 10px;
  2705. }
  2706. .ms-container .ms-selectable li.ms-hover,
  2707. .ms-container .ms-selection li.ms-hover {
  2708. background: @info;
  2709. }
  2710. /*Dropzone*/
  2711. .dropzone .dz-message {
  2712. text-align: center;
  2713. margin: 10% 0;
  2714. }
  2715. /*xeditable*/
  2716. .editable-input .form-control {
  2717. height: 30px;
  2718. }
  2719. /*ascolorpicker*/
  2720. .asColorPicker-trigger {
  2721. position: absolute;
  2722. top: 0;
  2723. right: -35px;
  2724. height: 38px;
  2725. width: 37px;
  2726. border: 0px;
  2727. }
  2728. .asColorPicker-dropdown {
  2729. max-width: 260px;
  2730. }
  2731. .asColorPicker-clear {
  2732. top: 7px;
  2733. right: 16px;
  2734. }
  2735. /*Datepicker*/
  2736. .datepicker table tr td.today,
  2737. .datepicker table tr td.today:hover,
  2738. .datepicker table tr td.today.disabled,
  2739. .datepicker table tr td.today.disabled:hover {
  2740. background-image: none;
  2741. background: @themecolor;
  2742. color: @white;
  2743. }
  2744. .datepicker table tr td.active,
  2745. .datepicker table tr td.active:hover,
  2746. .datepicker table tr td.active.disabled,
  2747. .datepicker table tr td.active.disabled:hover {
  2748. background-image: none;
  2749. background: @info;
  2750. color: @white;
  2751. }
  2752. /*Datatable*/
  2753. .editable-table + input.error {
  2754. border: 1px solid #danger;
  2755. outline: 0;
  2756. outline-offset: 0
  2757. }
  2758. .editable-table+input,
  2759. .editable-table+input:focus,
  2760. #editable-datatable_wrapper + input:focus {
  2761. border: 1px solid @info!important;
  2762. outline: 0!important;
  2763. outline-offset: 0!important
  2764. }
  2765. .editable-table td:focus {
  2766. outline: 0
  2767. }
  2768. /*USer-profile*/
  2769. .user-profile {
  2770. padding: 15px 0;
  2771. position: relative;
  2772. text-align: center;
  2773. .user-pro-body {
  2774. display: block;
  2775. img {
  2776. width: 50px;
  2777. display: block;
  2778. margin: 0 auto;
  2779. margin-bottom: 10px;
  2780. }
  2781. .u-dropdown {
  2782. color: @sidebar-text;
  2783. }
  2784. .dropdown-menu {
  2785. right: 0px;
  2786. width: 180px;
  2787. left: 0px;
  2788. margin: 0 auto;
  2789. }
  2790. }
  2791. }
  2792. /*Form-Wizard*/
  2793. .wizard-steps {
  2794. display: table;
  2795. width: 100%
  2796. }
  2797. .wizard-steps > li {
  2798. display: table-cell;
  2799. padding: 10px 20px;
  2800. background: @extralight;
  2801. span {
  2802. border-radius: 100%;
  2803. border: 1px solid @border;
  2804. width: 40px;
  2805. height: 40px;
  2806. display: inline-block;
  2807. vertical-align: middle;
  2808. padding-top: 9px;
  2809. margin-right: 8px;
  2810. text-align: center;
  2811. }
  2812. }
  2813. .wizard-content {
  2814. padding: 25px;
  2815. border-color: @border;
  2816. margin-bottom: 30px;
  2817. }
  2818. .wizard-steps > li.current,
  2819. .wizard-steps > li.done {
  2820. background: @info;
  2821. color: @white;
  2822. span {
  2823. border-color: @white;
  2824. color: @white;
  2825. }
  2826. h4 {
  2827. color: @white;
  2828. }
  2829. }
  2830. .wizard-steps > li.done {
  2831. background: @success;
  2832. }
  2833. .wizard-steps > li.error {
  2834. background: @danger;
  2835. }
  2836. .wiz-aco {
  2837. .pager {
  2838. margin: 0px;
  2839. }
  2840. }
  2841. /*New Widgets*/
  2842. /*Status widgets*/
  2843. #morris-donut-chart svg text {
  2844. font-family: @basefont1!important;
  2845. font-weight: 400!important;
  2846. }
  2847. /*Finance diagram*/
  2848. #diagram {
  2849. margin: 0 auto;
  2850. width: 250px;
  2851. padding-top: 60px;
  2852. height: 341px;
  2853. circle {
  2854. fill: @white;
  2855. }
  2856. text {
  2857. fill: @bodytext;
  2858. }
  2859. }
  2860. .get {
  2861. display: none;
  2862. }
  2863. /*Expense box*/
  2864. ul.expense-box {
  2865. margin: 0px;
  2866. padding: 0px;
  2867. li {
  2868. list-style: none;
  2869. display: inline-block;
  2870. padding: 8px 0 8px 20px;
  2871. i {
  2872. width: 60px;
  2873. font-size: 30px;
  2874. vertical-align: middle;
  2875. display: inline-block;
  2876. }
  2877. span,
  2878. div {
  2879. display: inline-block;
  2880. vertical-align: middle;
  2881. h2 {
  2882. margin-bottom: 0px;
  2883. font-weight: 400;
  2884. }
  2885. h4 {
  2886. margin-top: 0px;
  2887. }
  2888. }
  2889. }
  2890. }
  2891. .minus-margin {
  2892. margin: 0 -25px;
  2893. }
  2894. /*manage users*/
  2895. .manage-users {
  2896. margin-bottom: 30px;
  2897. .tabs-style-iconbox nav {
  2898. background: @info;
  2899. ul li {
  2900. a {
  2901. color: rgba(255, 255, 255, 0.6);
  2902. text-transform: uppercase;
  2903. &.sticon:before {
  2904. margin-bottom: 15px;
  2905. }
  2906. }
  2907. &.tab-current a {
  2908. box-shadow: none;
  2909. }
  2910. }
  2911. }
  2912. }
  2913. ul.side-icon-text {
  2914. margin: 0px;
  2915. padding: 0px;
  2916. > li {
  2917. list-style: none;
  2918. display: inline-block;
  2919. margin-right: 10px;
  2920. a {
  2921. color: @bodytext;
  2922. font-weight: 400;
  2923. &:hover {
  2924. color: @info;
  2925. }
  2926. span {
  2927. margin-right: 10px;
  2928. }
  2929. }
  2930. }
  2931. }
  2932. .manage-table {
  2933. border-top: 1px solid @border;
  2934. margin: 10px -25px 0;
  2935. background: @extralight;
  2936. padding: 30px;
  2937. }
  2938. .table tbody tr.advance-table-row {
  2939. border: 2px solid @border;
  2940. white-space: nowrap;
  2941. .checkbox {
  2942. margin: 0px;
  2943. }
  2944. &.active {
  2945. border: 2px solid @themecolor;
  2946. }
  2947. td {
  2948. vertical-align: middle!important;
  2949. border: 0px!important;
  2950. font-size: 16px;
  2951. background: @white;
  2952. }
  2953. }
  2954. td.sm-pd {
  2955. padding: 5px 0 !important;
  2956. }
  2957. /*your wallet balance*/
  2958. .wallet-widgets #morris-area-chart2 text,
  2959. .demo-container .flot-x-axis,
  2960. .demo-container .flot-text {
  2961. display: none;
  2962. }
  2963. ul.wallet-list {
  2964. margin: 0px;
  2965. padding: 0px;
  2966. li {
  2967. list-style: none;
  2968. display: block;
  2969. font-size: 18px;
  2970. padding: 20px 20px;
  2971. border-top: 1px solid @border;
  2972. i {
  2973. font-size: 24px;
  2974. display: inline-block;
  2975. margin-right: 12px;
  2976. vertical-align: middle;
  2977. color: @info;
  2978. }
  2979. a {
  2980. vertical-align: middle;
  2981. color: @bodytext;
  2982. &:hover {
  2983. color: @themecolor;
  2984. }
  2985. }
  2986. }
  2987. }
  2988. /*ct-sales*/
  2989. @keyframes dasharray-craziness {
  2990. 0% {
  2991. stroke-dasharray: 5px;
  2992. }
  2993. 50% {
  2994. stroke-dasharray: 6px;
  2995. }
  2996. 100% {
  2997. stroke-dasharray: 7px;
  2998. }
  2999. }
  3000. #ct-sales,
  3001. #ct-weather,
  3002. #ct-extra,
  3003. #ct-bar-chart,
  3004. #ct-main-bal,
  3005. #ct-visits,
  3006. #ct-city-wth,
  3007. #ct-polar-chart,
  3008. #ct-daily-sales {
  3009. position: relative;
  3010. }
  3011. #ct-sales,
  3012. #ct-weather,
  3013. #ct-extra {
  3014. .ct-series-a .ct-line,
  3015. .ct-series-a .ct-point {
  3016. stroke: @white;
  3017. stroke-shadow: 3px 10px 10px #000;
  3018. }
  3019. .ct-series-a .ct-area {
  3020. fill: none;
  3021. }
  3022. .ct-grid {
  3023. stroke: rgba(255, 255, 255, 0.2);
  3024. stroke-dasharray: 0px;
  3025. }
  3026. }
  3027. #ct-weather {
  3028. .ct-series-a .ct-line {
  3029. animation: dasharray-craziness 2s infinite;
  3030. }
  3031. }
  3032. .ct-label {
  3033. font-size: 1em;
  3034. }
  3035. #ct-extra {
  3036. .ct-series-a .ct-line,
  3037. .ct-series-a .ct-point {
  3038. stroke: @info;
  3039. animation: dasharray-craziness 0.5s infinite;
  3040. }
  3041. .ct-grid {
  3042. stroke: rgba(0, 0, 0, 0.2);
  3043. stroke-dasharray: 2px;
  3044. }
  3045. }
  3046. #ct-bar-chart {
  3047. .ct-series-a .ct-bar {
  3048. stroke: @info;
  3049. stroke-width: 7px;
  3050. }
  3051. }
  3052. #ct-main-bal {
  3053. .ct-series-a .ct-line,
  3054. .ct-series-a .ct-point {
  3055. stroke: none;
  3056. fill: @info;
  3057. fill-opacity: 0.5;
  3058. }
  3059. .ct-series-b .ct-line,
  3060. .ct-series-b .ct-point {
  3061. stroke: @info;
  3062. stroke-width: 1px;
  3063. animation: dasharray-craziness 2s infinite;
  3064. opacity: 0.8;
  3065. }
  3066. .ct-series-b .ct-area {
  3067. fill: @info;
  3068. fill-opacity: 0.2;
  3069. }
  3070. }
  3071. #ct-visits {
  3072. .ct-series-a .ct-line,
  3073. .ct-series-a .ct-point {
  3074. stroke: @danger;
  3075. }
  3076. .ct-series-b .ct-line,
  3077. .ct-series-b .ct-point {
  3078. stroke: @info;
  3079. }
  3080. .ct-series-a .ct-area {
  3081. fill: @danger;
  3082. fill-opacity: 0.1;
  3083. }
  3084. .ct-series-b .ct-area {
  3085. fill: @info;
  3086. fill-opacity: 0.1;
  3087. }
  3088. .ct-line {
  3089. stroke-width: 2px;
  3090. }
  3091. }
  3092. #ct-city-wth {
  3093. .ct-label {
  3094. color: @white;
  3095. }
  3096. .ct-series-a .ct-line,
  3097. .ct-series-a .ct-point {
  3098. stroke: rgba(255, 255, 255, 0.2);
  3099. }
  3100. .ct-series-a .ct-area {
  3101. fill: none;
  3102. }
  3103. }
  3104. #ct-polar-chart {
  3105. .ct-series-a .ct-point,
  3106. .ct-series-b .ct-point,
  3107. .ct-series-c .ct-point,
  3108. .ct-series-d .ct-point {
  3109. stroke-width: 3px;
  3110. }
  3111. .ct-series-a .ct-area {
  3112. fill: @info;
  3113. }
  3114. .ct-series-b .ct-area {
  3115. fill: @success;
  3116. }
  3117. .ct-series-c .ct-area {
  3118. fill: @danger;
  3119. }
  3120. .ct-series-d .ct-area {
  3121. fill: @warning;
  3122. }
  3123. }
  3124. #ct-daily-sales {
  3125. .ct-series-a .ct-bar {
  3126. stroke: rgba(255, 255, 255, 0.7);
  3127. stroke-width: 10px;
  3128. }
  3129. }
  3130. /*New weather widgets*/
  3131. .dp-table {
  3132. display: table;
  3133. width: 100%;
  3134. margin: 0px;
  3135. padding: 0px;
  3136. li {
  3137. margin: 0px;
  3138. padding: 0px;
  3139. list-style: none;
  3140. display: table-cell;
  3141. text-align: center;
  3142. }
  3143. }
  3144. /*Calendar widgets*/
  3145. .calendar-widget {
  3146. display: block;
  3147. background: @white;
  3148. overflow: hidden;
  3149. .cal-left {
  3150. width: 30%;
  3151. float: @lft;
  3152. position: absolute;
  3153. padding: 5%;
  3154. height: 100%;
  3155. .cal-btm-text {
  3156. position: absolute;
  3157. bottom: 40px;
  3158. font-weight: 400;
  3159. }
  3160. h1 {
  3161. font-size: 50px;
  3162. margin-bottom: 0px;
  3163. font-weight: 400;
  3164. }
  3165. span {
  3166. width: 100px;
  3167. border-top: 2px solid @success;
  3168. height: 2px;
  3169. margin: 3px 0;
  3170. display: inline-block;
  3171. }
  3172. }
  3173. .cal-right {
  3174. width: 70%;
  3175. float: @rgt;
  3176. min-height: 200px;
  3177. .cal-table {
  3178. width: 100%;
  3179. td {
  3180. padding: 18px 15px;
  3181. text-align: center;
  3182. color: @white;
  3183. font-weight: 400;
  3184. h1 {
  3185. text-align: left;
  3186. color: @white;
  3187. font-weight: 400;
  3188. padding-left: 30px;
  3189. }
  3190. .cal-add {
  3191. font-size: 24px;
  3192. color: @white;
  3193. }
  3194. &.cal-active {
  3195. border-radius: 60px;
  3196. background: rgba(0, 0, 0, 0.1);
  3197. }
  3198. }
  3199. }
  3200. }
  3201. }
  3202. /*Real-time-widgest*/
  3203. .real-time-widgets {
  3204. text-align: center;
  3205. position: relative;
  3206. .data-text {
  3207. width: 200px;
  3208. margin: 0 auto;
  3209. position: absolute;
  3210. left: 0;
  3211. z-index: 200;
  3212. right: 0;
  3213. top: 110px;
  3214. h1 {
  3215. font-size: 50px;
  3216. }
  3217. h5 {
  3218. width: 70px;
  3219. margin: 0 auto;
  3220. padding-bottom: 8px;
  3221. margin-bottom: 10px;
  3222. border-bottom: 2px solid @success;
  3223. }
  3224. span {
  3225. font-size: 18px;
  3226. font-weight: 400;
  3227. }
  3228. }
  3229. }
  3230. /*Profile-widgets*/
  3231. .profile-social-icons {
  3232. padding-bottom: 30px;
  3233. font-size: 20px;
  3234. a {
  3235. color: @muted;
  3236. }
  3237. }
  3238. /*Mailbox widgets*/
  3239. .mailbox-widget {
  3240. .customtab {
  3241. border-bottom: 0px;
  3242. li {
  3243. a {
  3244. color: @white;
  3245. &:hover {
  3246. background: transparent;
  3247. opacity: 0.5;
  3248. }
  3249. }
  3250. &.active a,
  3251. &.active a:focus {
  3252. background: none;
  3253. color: @white;
  3254. border-color: @success;
  3255. }
  3256. }
  3257. }
  3258. }
  3259. /*sk-chat-widgets*/
  3260. .sk-chat-widgets {
  3261. .chatonline {
  3262. padding: 0px;
  3263. li {
  3264. list-style: none;
  3265. padding: 5px 0;
  3266. position: relative;
  3267. a {
  3268. float: none;
  3269. display: inline-block;
  3270. img {
  3271. width: 40px;
  3272. }
  3273. }
  3274. .call-chat {
  3275. position: absolute;
  3276. right: 0px;
  3277. display: none;
  3278. top: 20px;
  3279. }
  3280. &:hover .call-chat {
  3281. display: block;
  3282. }
  3283. }
  3284. }
  3285. }
  3286. /*New Chat box widgets*/
  3287. .chat-box-input {
  3288. border: 0px;
  3289. width: 100%;
  3290. height: 60px;
  3291. resize: none;
  3292. line-height: 24px;
  3293. }
  3294. /*manage-u-table*/
  3295. .manage-u-table {
  3296. select {
  3297. max-width: 150px;
  3298. border-radius: 60px;
  3299. }
  3300. td {
  3301. white-space: nowrap;
  3302. }
  3303. }
  3304. /*City weather widget*/
  3305. .city-weather-widget {
  3306. h1,
  3307. h4,
  3308. h5,
  3309. i {
  3310. color: @white;
  3311. }
  3312. .side-icon-text {
  3313. i {
  3314. font-size: 50px;
  3315. margin-right: 15px;
  3316. }
  3317. h1 {
  3318. font-weight: 500;
  3319. }
  3320. }
  3321. }
  3322. .city-weather-days {
  3323. padding: 0 15px;
  3324. li {
  3325. text-align: center;
  3326. font-size: 16px;
  3327. padding: 18px 0;
  3328. border-left: 1px solid @border;
  3329. border-top: 1px solid @border;
  3330. span {
  3331. display: block;
  3332. text-transform: uppercase;
  3333. line-height: 24px;
  3334. padding: 7px 0px;
  3335. }
  3336. i {
  3337. font-size: 30px;
  3338. color: #e8e8e8;
  3339. }
  3340. &.active {
  3341. border-bottom: 2px solid @danger;
  3342. i {
  3343. color: @danger;
  3344. }
  3345. }
  3346. }
  3347. }
  3348. /*weather-with-bg*/
  3349. .weather-with-bg {
  3350. .wt-top {
  3351. .wt-img {
  3352. width: 100%;
  3353. height: 350px;
  3354. padding: 40px 60px;
  3355. background-size: cover;
  3356. background-position: center center;
  3357. overflow: hidden;
  3358. h1,
  3359. h4,
  3360. i {
  3361. color: @white;
  3362. }
  3363. .side-icon-text {
  3364. li {
  3365. i {
  3366. font-size: 60px;
  3367. margin-right: 20px;
  3368. }
  3369. h1 {
  3370. font-size: 60px;
  3371. }
  3372. }
  3373. }
  3374. .wt-city-text {
  3375. padding-top: 50px;
  3376. }
  3377. }
  3378. }
  3379. .wt-counter {
  3380. li {
  3381. display: inline-block;
  3382. padding: 10px 7.5px;
  3383. a {
  3384. min-width: 50px;
  3385. display: block;
  3386. padding: 13px;
  3387. height: 50px;
  3388. color: @bodytext;
  3389. font-size: 17px;
  3390. text-align: center;
  3391. border-radius: 100%;
  3392. }
  3393. &.active a {
  3394. background: @themecolor;
  3395. color: @white;
  3396. }
  3397. }
  3398. }
  3399. }
  3400. /*mt Gauge chart*/
  3401. .mt-gauge {
  3402. background: @white;
  3403. height: 314px;
  3404. }
  3405. /*Calendar Event*/
  3406. .calendar-events {
  3407. padding: 8px 10px;
  3408. border: 1px solid @white;
  3409. cursor: move;
  3410. &:hover {
  3411. border: 1px dashed @border;
  3412. }
  3413. i {
  3414. margin-right: 8px;
  3415. }
  3416. }
  3417. /*earning-box-widgets*/
  3418. .earning-box {
  3419. padding: 0px;
  3420. margin: 0px;
  3421. li {
  3422. display: box;
  3423. list-style: none;
  3424. padding: 20px 0;
  3425. .er-row {
  3426. overflow: hidden;
  3427. .er-pic {
  3428. float: left;
  3429. margin-right: 20px;
  3430. img {
  3431. width: 60px;
  3432. }
  3433. }
  3434. .er-text {
  3435. float: left;
  3436. width: 45%;
  3437. h3 {
  3438. margin: 5px 0 0 0px;
  3439. font-weight: 400;
  3440. font-size: 18px;
  3441. text-overflow: ellipsis;
  3442. white-space: nowrap;
  3443. overflow: hidden;
  3444. }
  3445. }
  3446. .er-count {
  3447. float: right;
  3448. font-size: 30px;
  3449. padding-top: 5px;
  3450. color: @info;
  3451. font-weight: 400;
  3452. }
  3453. }
  3454. }
  3455. }
  3456. /*To-do list*/
  3457. .todo-list {
  3458. li {
  3459. border: 0px;
  3460. border-bottom: 1px solid @border;
  3461. margin-bottom: 0px;
  3462. padding: 20px 15px 15px 0px;
  3463. .checkbox {
  3464. label {
  3465. font-weight: 400;
  3466. }
  3467. }
  3468. &:last-child {
  3469. border-bottom: 0px;
  3470. }
  3471. .assignedto {
  3472. padding: 0px 0 0 27px;
  3473. margin: 0px;
  3474. li {
  3475. list-style: none;
  3476. padding: 0px;
  3477. display: inline-block;
  3478. border: 0px;
  3479. margin-right: 2px;
  3480. img {
  3481. width: 30px;
  3482. border-radius: 100%;
  3483. }
  3484. }
  3485. }
  3486. .item-date {
  3487. padding-left: 25px;
  3488. font-size: 12px;
  3489. display: inline-block;
  3490. }
  3491. }
  3492. }
  3493. .list-task .task-done span {
  3494. text-decoration: line-through;
  3495. }
  3496. /*Designer form*/
  3497. .no-bg-addon {
  3498. .input-group-addon {
  3499. background-color: @white;
  3500. border: 1px solid @border;
  3501. left: -2px;
  3502. position: relative;
  3503. z-index: 10;
  3504. border-left: 0px;
  3505. color: @light;
  3506. border-radius: 0px @radius-alt @radius-alt 0;
  3507. }
  3508. .form-control {
  3509. transition: 0s;
  3510. }
  3511. .form-control:focus + .input-group-addon {
  3512. border-color: @bodytext;
  3513. color: @bodytext;
  3514. }
  3515. }
  3516. .select-mode {
  3517. .btn {
  3518. padding: 15px 0;
  3519. }
  3520. .btn.btn-default:focus {
  3521. border-color: @info;
  3522. color: @white;
  3523. background: @info;
  3524. }
  3525. }
  3526. ul.select-row-icon {
  3527. padding: 0px;
  3528. margin: 0px;
  3529. li {
  3530. display: block;
  3531. list-style: none;
  3532. a {
  3533. display: block;
  3534. color: @bodytext;
  3535. padding: 8px 15px;
  3536. position: relative;
  3537. border: 2px solid @white;
  3538. i {
  3539. font-size: 24px;
  3540. vertical-align: middle;
  3541. padding-right: 10px;
  3542. &.whn-hov {
  3543. color: @info;
  3544. display: none;
  3545. float: @rgt;
  3546. position: absolute;
  3547. right: 15px;
  3548. top: 10px;
  3549. }
  3550. }
  3551. &:hover,
  3552. &.selected {
  3553. border: 2px solid @border;
  3554. i.whn-hov {
  3555. display: inline-block;
  3556. }
  3557. }
  3558. }
  3559. }
  3560. }