-
-
- - - - - +
+
+
+ +
-
+
{{ task.Folio}}
diff --git a/src/app/pages/gabinete-digital/pedidos/pedido/pedido.page.scss b/src/app/pages/gabinete-digital/pedidos/pedido/pedido.page.scss index 99af5da34..dab508d2e 100644 --- a/src/app/pages/gabinete-digital/pedidos/pedido/pedido.page.scss +++ b/src/app/pages/gabinete-digital/pedidos/pedido/pedido.page.scss @@ -33,7 +33,7 @@ padding: 0!important; float: left; width: 280px; - margin: 2.5px 0 0 5px; + display: flex; align-items: center; @@ -74,8 +74,6 @@ font-size: 25px; overflow: auto; float: left; - padding-top: 4px; - padding-left: 5px; } .div-icon{ width: 40px; From 3ad94744985d2988a489cd1a2c2352fcbc26c3f2 Mon Sep 17 00:00:00 2001 From: Peter Maquiran Date: Tue, 11 May 2021 16:29:21 +0100 Subject: [PATCH 3/3] Add options for event --- .../view-event/options/options.component.html | 17 +++++++ .../view-event/options/options.component.scss | 51 +++++++++++++++++++ .../options/options.component.spec.ts | 24 +++++++++ .../view-event/options/options.component.ts | 14 +++++ 4 files changed, 106 insertions(+) create mode 100644 src/app/pages/agenda/view-event/options/options.component.html create mode 100644 src/app/pages/agenda/view-event/options/options.component.scss create mode 100644 src/app/pages/agenda/view-event/options/options.component.spec.ts create mode 100644 src/app/pages/agenda/view-event/options/options.component.ts diff --git a/src/app/pages/agenda/view-event/options/options.component.html b/src/app/pages/agenda/view-event/options/options.component.html new file mode 100644 index 000000000..301bb3166 --- /dev/null +++ b/src/app/pages/agenda/view-event/options/options.component.html @@ -0,0 +1,17 @@ + +
+ +
+
+ + + + + + +
+ +
+
diff --git a/src/app/pages/agenda/view-event/options/options.component.scss b/src/app/pages/agenda/view-event/options/options.component.scss new file mode 100644 index 000000000..2c7a0cc7f --- /dev/null +++ b/src/app/pages/agenda/view-event/options/options.component.scss @@ -0,0 +1,51 @@ +.container{ + --padding-top:20px !important; + --padding-bottom:20px !important; + --padding-start:20px !important; + --padding-end:20px !important; +} +.arrow-right{ + display: none; + margin-bottom: 20px; + .arrow-right-icon{ + width: 37px; + float: right; + font-size: 35px; + overflow: hidden; + } +} +.buttons{ + display: flex; + flex-wrap: wrap; + justify-content: space-around; +} +.solid { + display: none; + width: 90%; + border-top: 1px solid #bbb; + margin: 0 auto !important; + } + .btn-ok, .btn-cancel{ + //width: 50% !important; + margin-bottom: 5px !important; + margin-top: 5px !important; +} +@media only screen and (min-width: 1024px) { + .arrow-right{ + display: flex; + justify-content: flex-end; + } + .btn-cancel{ + display: none; + width: 100% !important; + margin-bottom: 10px !important; + } + .btn-delete, .btn-ok{ + width: 100% !important; + margin-bottom: 10px !important; + margin-top: 10px !important; + } + /* .solid{ + display: block; + } */ +} \ No newline at end of file diff --git a/src/app/pages/agenda/view-event/options/options.component.spec.ts b/src/app/pages/agenda/view-event/options/options.component.spec.ts new file mode 100644 index 000000000..370263b60 --- /dev/null +++ b/src/app/pages/agenda/view-event/options/options.component.spec.ts @@ -0,0 +1,24 @@ +import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; +import { IonicModule } from '@ionic/angular'; + +import { OptionsComponent } from './options.component'; + +describe('OptionsComponent', () => { + let component: OptionsComponent; + let fixture: ComponentFixture; + + beforeEach(waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [ OptionsComponent ], + imports: [IonicModule.forRoot()] + }).compileComponents(); + + fixture = TestBed.createComponent(OptionsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + })); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/pages/agenda/view-event/options/options.component.ts b/src/app/pages/agenda/view-event/options/options.component.ts new file mode 100644 index 000000000..b4280a4ec --- /dev/null +++ b/src/app/pages/agenda/view-event/options/options.component.ts @@ -0,0 +1,14 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-options', + templateUrl: './options.component.html', + styleUrls: ['./options.component.scss'], +}) +export class OptionsComponent implements OnInit { + + constructor() { } + + ngOnInit() {} + +}